public HaberController(IHaberesService haberesService, IReportesService reportesService) { _haberesService = haberesService; _reportesService = reportesService; }
public ReportesController(IReportesService reportesService) { _reportesService = reportesService; }
public ReportesController() { _reportesService = new ReportesService(); }
public ReportesController(IChinookContext context, IReportesService reportesService) { _context = context; _reportesService = reportesService; }
public PolizaController(IPolizasService polizaService, IReportesService reportesService) { _polizaService = polizaService; _reportesService = reportesService; }
/// <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; }