TeacherService.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using System.Threading.Tasks;
  2. using GxPress.Repository.Interface.Category;
  3. using GxPress.Repository.Interface.Teacher;
  4. using GxPress.Service.Interface.Teacher;
  5. namespace GxPress.Service.Implement.Teacher
  6. {
  7. public class TeacherService : ITeacherService
  8. {
  9. private readonly ICategoryRepository categoryRepository;
  10. private readonly ITeacherRepository teacherRepository;
  11. public TeacherService(ICategoryRepository categoryRepository, ITeacherRepository teacherRepository)
  12. {
  13. this.categoryRepository = categoryRepository;
  14. this.teacherRepository = teacherRepository;
  15. }
  16. public async Task<int> InsertAsync(Entity.tede2.Teacher.Teacher note)
  17. {
  18. note.CategoryName = await categoryRepository.GetCategoryParentAsync(note.CategoryId, note.CategoryName);
  19. return await teacherRepository.InsertAsync(note);
  20. }
  21. public async Task<bool> UpdateAsync(Entity.tede2.Teacher.Teacher note)
  22. {
  23. note.CategoryName = await categoryRepository.GetCategoryParentAsync(note.CategoryId, note.CategoryName);
  24. return await teacherRepository.UpdateAsync(note);
  25. }
  26. }
  27. }