Exemplo n.º 1
0
 public BaseCRUDService(IRO_UNMO_Context _db, IMapper m) : base(_db, m)
 {
 }
Exemplo n.º 2
0
 public CountryService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 3
0
 public UsersService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public ApplicantService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public BaseService(IRO_UNMO_Context _db, IMapper m)
 {
     db     = _db;
     mapper = m;
 }
Exemplo n.º 6
0
 public UniversityService(IRO_UNMO_Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }