Beispiel #1
0
 public LopController(ILopRepository repo, IMapper mapper)
 {
     _repo       = repo;
     _mapper     = mapper;
     _entityName = "lớp";
 }
 public LopService(ILopRepository ilopRepository)
 {
     _ilopRepository = ilopRepository;
 }
Beispiel #3
0
 public LopService()
 {
     _lopRepository = UnitOfWork.Repository <Lop>() as ILopRepository;
 }