示例#1
0
 public LiquidacionService(gpro_dbContext context,
                           IMapper mapper, IHoraTrabajadaService horaTrabajadaService)
 {
     _mapper  = mapper;
     _context = context;
     _horaTrabajadaService = horaTrabajadaService;
 }
示例#2
0
 public HoraTrabajadasController(gpro_dbContext context, IMapper mapper,
                                 IOptions <AppSettings> appSettings, IHoraTrabajadaService horaTrabajadaService)
 {
     _horaTrabajadaService = horaTrabajadaService;
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
示例#3
0
 public HoraTrabajadaController(IHoraTrabajadaService horaTrabajadaService)
 {
     _horaTrabajadaService = horaTrabajadaService;
 }