public AlertaController(IAlertaService alertaService, IAlertaQuery alertaQuery) { _alertaService = alertaService; _alertaQuery = alertaQuery; }
public AlertasController(IAlertaService alertaService) { _alertaService = alertaService; }
public AlertaAppService(IUnitOfWork unitOfWork, IAlertaService alertaService, IMapper mapper, IMarcaAppService marcaAppService) : base(unitOfWork) { _alertaService = alertaService; _mapper = mapper; _marcaAppService = marcaAppService; }