Пример #1
0
 public AlertaController(IAlertaService alertaService, IAlertaQuery alertaQuery)
 {
     _alertaService = alertaService;
     _alertaQuery   = alertaQuery;
 }
 public AlertaService(IAlertaRepositorio alertaRepositorio, IUnitOfWork uow, IAlertaQuery alertaQuery) :
     base(uow)
 {
     _alertaRepositorio = alertaRepositorio;
     _alertaQuery       = alertaQuery;
 }