public BaseCRUDService(IRO_UNMO_Context _db, IMapper m) : base(_db, m)
 {
 }
 public CountryService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #3
0
 public UsersService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #4
0
 public ApplicantService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #5
0
 public BaseService(IRO_UNMO_Context _db, IMapper m)
 {
     db     = _db;
     mapper = m;
 }
 public UniversityService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }