12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq;
- using EMISOnline.Entities;
- using EMISOnline.DataLogic.Repositories;
- using EMISOnline.ViewModel.SystemView;
- using System.Linq.Expressions;
- namespace EMISOnline.DataLogic.FtpFile
- {
- public class FTPVideoDAL
- {
- public StudentRepository StudentRepository { get; set; }
- public SchoolyearRepository SchoolyearRepository { get; set; }
- public ExecutablePlanRepository ExecutablePlanRepository { get; set; }
- public ClassmajorRepository ClassmajorRepository { get; set; }
- public GrademajorRepository GrademajorRepository { get; set; }
- public FTPVideoRepository FTPVideoRepository { get; set; }
- }
- }
|