예제 #1
0
 public MeetingsController(db_weeklytalksContext context, IMapper mapper, IHostingEnvironment env)
 {
     _context = context;
     _mapper  = mapper;
     _env     = env;
 }
예제 #2
0
 public UserService(db_weeklytalksContext context)
 {
     _context = context;
 }
 public BusinessUnitsController(db_weeklytalksContext context)
 {
     _context = context;
 }
예제 #4
0
 public OfficesController(db_weeklytalksContext context)
 {
     _context = context;
 }
예제 #5
0
 public EmployeesController(db_weeklytalksContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }