Exemple #1
0
 public LiquidacionService(gpro_dbContext context,
                           IMapper mapper, IHoraTrabajadaService horaTrabajadaService)
 {
     _mapper  = mapper;
     _context = context;
     _horaTrabajadaService = horaTrabajadaService;
 }
Exemple #2
0
 public HoraTrabajadasController(gpro_dbContext context, IMapper mapper,
                                 IOptions <AppSettings> appSettings, IHoraTrabajadaService horaTrabajadaService)
 {
     _horaTrabajadaService = horaTrabajadaService;
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
Exemple #3
0
 public LiquidacionController(gpro_dbContext context, IMapper mapper,
                              IOptions <AppSettings> appSettings, ILiquidacionService liquidacionService)
 {
     _liquidacionService = liquidacionService;
     _context            = context;
     _appSetings         = appSettings.Value;
     _mapper             = mapper;
 }
Exemple #4
0
 public TareaController(
     gpro_dbContext context,
     ITareaService tareaService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _tareaService = tareaService;
     _mapper       = mapper;
     _appSettings  = appSettings.Value;
     _context      = context;
 }
Exemple #5
0
 public EscalasController(
     IEscalasService escalasService,
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     gpro_dbContext context)
 {
     _escalasService = escalasService;
     _mapper         = mapper;
     _appSettings    = appSettings.Value;
     _context        = context;
 }
 public EmpleadoController(
     IEmpleadoService empleadoService,
     IUsuarioService usuarioService,
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     gpro_dbContext context)
 {
     _empleadoService = empleadoService;
     _usuarioService  = usuarioService;
     _mapper          = mapper;
     _appSettings     = appSettings.Value;
     _context         = context;
 }
Exemple #7
0
 public ClienteService(gpro_dbContext context)
 {
     _context = context;
 }
Exemple #8
0
 public HoraTrabajadaService(gpro_dbContext context)
 {
     _context = context;
 }
Exemple #9
0
 public EscalasService(gpro_dbContext context)
 {
     _context = context;
 }
Exemple #10
0
 public UsuarioService(gpro_dbContext context)
 {
     _context = context;
 }
Exemple #11
0
 public RolsController(gpro_dbContext context)
 {
     _context = context;
 }
 public ProyectosController(gpro_dbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #13
0
 public RolsController(gpro_dbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #14
0
 public TareaService(gpro_dbContext context)
 {
     _context = context;
 }
Exemple #15
0
 public EmpleadoService(gpro_dbContext context)
 {
     _context = context;
 }