public PlanillaController(ILoggerManager logger, IPlanillaService _planillaService,
                           IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _logger          = logger;
     _PlanillaService = _planillaService;
     _mapper          = mapper;
     _appSettings     = appSettings.Value;
 }
 public ReportePlanillaEditor(IReportePlanillaView view)
 {
     this.mView = view;
     this.mReportePlanillaService = ReportePlanillaService.Instance;
     this.mAreaService            = AreaService.Instance;
     this.mPersonaService         = PersonaService.Instance;
     this.mPlanillaService        = PlanillaService.Instance;
     this.Initialize();
 }
Esempio n. 3
0
 public ConciliacionController(ILoggerManager logger,
                               IConciliacionService _conciliacionService,
                               IPlanillaService _planillaService,
                               IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _logger = logger;
     this._conciliacionService = _conciliacionService;
     this._planillaService     = _planillaService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
Esempio n. 4
0
 public PlanillaEditor(IPlanillaView view)
 {
     this.mView                   = view;
     this.mPlanillaService        = PlanillaService.Instance;
     this.mAreaService            = AreaService.Instance;
     this.mSucursalService        = SucursalService.Instance;
     this.mPersonaService         = PersonaService.Instance;
     this.mOrdenProduccionService = OrdenProduccionService.Instance;
     this.mActividadService       = ActividadService.Instance;
     this.mCentroCostoService     = CentroCostoService.Instance;
     this.mNovedadService         = NovedadService.Instance;
     this.mConfiguracionService   = ConfiguracionService.Instance;
     this.mNumeracionService      = NumeracionService.Instance;
     this.Initialize();
 }
Esempio n. 5
0
 public ValuesController(ILoggerManager logger,
                         IPlanillaService _planillaService)
 {
     _logger          = logger;
     _PlanillaService = _planillaService;
 }