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