public MedicionController(IMedicionService medicionService,
                           IIndicadorAutomaticoService indicadorAutomaticoService,
                           AnioTableroService anioTableroService)
 {
     this.MedicionService       = medicionService;
     IndicadorAutomaticoService = indicadorAutomaticoService;
     AnioTableroService         = anioTableroService;
 }
 public AccountController(IPersonaService personaService,
                          IAnioTableroService anioTableroService,
                          IAuditoriaService auditoriaService)
 {
     this.PersonaService     = personaService;
     this.AnioTableroService = anioTableroService;
     this.AuditoriaService   = auditoriaService;
 }
Esempio n. 3
0
 public TableroController(IMedicionService medicionService,
                          IAnioTableroService anioTableroService,
                          IAreaService areaService,
                          ITableroService tableroService)
 {
     this.MedicionService    = medicionService;
     this.AnioTableroService = anioTableroService;
     this.AreaService        = areaService;
     this.TableroService     = tableroService;
 }