Esempio n. 1
0
 public QueryAppService(ICustasRepository repositoryCustas,
                        IRegrasForunsBairrosRepository repositoryRegrasBairro,
                        IRegrasForumRepository repositoryRegras,
                        IRepository repository,
                        IMapper mapper)
 {
     _repository             = repository;
     _repositoryRegras       = repositoryRegras;
     _repositoryRegrasBairro = repositoryRegrasBairro;
     _repositoryCustas       = repositoryCustas;
     _mapper = mapper;
 }
Esempio n. 2
0
 public RegraBairroCommandHandler(IRegrasForunsBairrosRepository repository, IDomainNotificationHandler notifications) : base(notifications)
 {
     _repository = repository;
 }
Esempio n. 3
0
 public RegrasForumRepositoryTeste()
 {
     _repo  = new RegrasForumRepository(new Data.Contexto.DashBoardDbContext());
     _repob = new RegrasForunsBairrosRepository(new DashBoardDbContext());
 }