예제 #1
0
 public UserController(DHRIM_CMHGContext context, IStringLocalizer <SharedResources> SharedLocalizer, IMapper mapper, IUserBC userBC) : base(SharedLocalizer)
 {
     _userBC  = userBC;
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public UserBC(DHRIM_CMHGContext context) : base(context)
 {
     _context = context;
 }
예제 #3
0
 public BaseBC(DHRIM_CMHGContext context)
 {
     _context = context;
     DbSet    = _context.Set <T>();
 }