FTPVideoDAL.cs 761 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Bowin.Common.Linq;
  6. using EMISOnline.Entities;
  7. using EMISOnline.DataLogic.Repositories;
  8. using EMISOnline.ViewModel.SystemView;
  9. using System.Linq.Expressions;
  10. namespace EMISOnline.DataLogic.FtpFile
  11. {
  12. public class FTPVideoDAL
  13. {
  14. public StudentRepository StudentRepository { get; set; }
  15. public SchoolyearRepository SchoolyearRepository { get; set; }
  16. public ExecutablePlanRepository ExecutablePlanRepository { get; set; }
  17. public ClassmajorRepository ClassmajorRepository { get; set; }
  18. public GrademajorRepository GrademajorRepository { get; set; }
  19. public FTPVideoRepository FTPVideoRepository { get; set; }
  20. }
  21. }