public HaberController(IHaberesService haberesService, IReportesService reportesService)
 {
     _haberesService  = haberesService;
     _reportesService = reportesService;
 }
Example #2
0
 public ReportesController(IReportesService reportesService)
 {
     _reportesService = reportesService;
 }
Example #3
0
 public ReportesController()
 {
     _reportesService = new ReportesService();
 }
Example #4
0
 public ReportesController(IChinookContext context, IReportesService reportesService)
 {
     _context         = context;
     _reportesService = reportesService;
 }
Example #5
0
 public PolizaController(IPolizasService polizaService, IReportesService reportesService)
 {
     _polizaService   = polizaService;
     _reportesService = reportesService;
 }
Example #6
0
 /// <summary>
 /// Vale controller constructor
 /// </summary>
 /// <param name="vale_service">Injects vale service</param>
 public ReportesController(IReportesService reportes_service)
 {
     this.reportes_service = reportes_service;
 }
 public PedidoController(IPedidosService pedidosService, IReportesService reportesService, IObservacionesService observacionesService)
 {
     _pedidosService       = pedidosService;
     _reportesService      = reportesService;
     _observacionesService = observacionesService;
 }