2023-01-13 18:03:08 +08:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using System;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-13 18:03:08 +08:00
|
|
|
|
using Volo.Abp.Application.Services;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using Yi.Framework.Application.Contracts.Student;
|
|
|
|
|
|
using Yi.Framework.Domain.Student;
|
2023-01-12 15:25:46 +08:00
|
|
|
|
using Yi.Framework.Domain.Student.IRepository;
|
2023-01-13 18:03:08 +08:00
|
|
|
|
|
2023-01-12 14:58:16 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Application.Student
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 服务实现
|
|
|
|
|
|
/// </summary>
|
2023-01-13 18:03:08 +08:00
|
|
|
|
public class StudentService : ApplicationService, IStudentService
|
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
|
|
|
|
|
2023-01-13 18:03:08 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 你好世界
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="formFile"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public string PostShijie(string 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 "你好世界";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|