Example #1
0
 public AuthRepo(EasyTwoJuetengContext context,
                 ICrudPattern <User> userRepo,
                 IMapper mapper)
 {
     _context  = context;
     _userRepo = userRepo;
     _mapper   = mapper;
 }
 public UserRoleController(EasyTwoJuetengContext context)
 {
     _context = context;
 }
 public EmployeeRepo(EasyTwoJuetengContext context,
                     IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CityRepo(EasyTwoJuetengContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #5
0
 public WorkLocationRepo(EasyTwoJuetengContext context,
                         IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }