Files
Yi.Admin/src/Yi.Framework/Yi.Framework.Application/Student/StudentService.cs

35 lines
1010 B
C#
Raw Normal View History

2023-01-13 13:40:54 +08:00
using System;
2023-01-12 14:58:16 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Application.Contracts.Student;
using Yi.Framework.Domain.Student;
using Yi.Framework.Domain.Student.IRepository;
2023-01-13 13:40:54 +08:00
using Microsoft.AspNetCore.Mvc;
using NET.AutoWebApi.Setting;
using Microsoft.AspNetCore.Http;
2023-01-12 14:58:16 +08:00
namespace Yi.Framework.Application.Student
{
/// <summary>
/// 服务实现
/// </summary>
2023-01-13 13:40:54 +08:00
public class StudentService : IStudentService, IAutoApiService
2023-01-12 14:58:16 +08:00
{
private readonly IStudentRepository _studentRepository;
private readonly StudentManager _studentManager;
public StudentService(IStudentRepository studentRepository, StudentManager studentManager )
{
_studentRepository = studentRepository;
_studentManager = studentManager;
}
2023-01-13 13:40:54 +08:00
public string PostShijie(IFormFile formFile)
2023-01-12 14:58:16 +08:00
{
2023-01-13 13:40:54 +08:00
var ss = formFile;
2023-01-12 14:58:16 +08:00
return "你好世界";
}
}
}