Beispiel #1
0
 public AcompanhamentoController(ICardapioRepository <Acompanhamento> cardapioRepository, IMapper mapper)
 {
     _cardapioRepository = cardapioRepository;
     _mapper             = mapper;
 }
 public CardapioController(ICardapioRepository repository)
 {
     _repository = repository;
 }
 public SaladaController(ISaladaRepository saladaRepository, ICardapioRepository <Salada> cardapioRepository, IMapper mapper)
 {
     _cardapioRepository = cardapioRepository;
     _mapper             = mapper;
 }
Beispiel #4
0
 public CardapiosController(IMapper mapper, ICardapioRepository repository, IUnitOfWork unitOfWork)
 {
     _mapper     = mapper;
     _repository = repository;
     _unitOfWork = unitOfWork;
 }
 public CardapioApplication(ICardapioRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Beispiel #6
0
 public CardapioService(ICardapioRepository cardapioRepository)
 {
     _cardapioRepository = cardapioRepository;
 }
Beispiel #7
0
 public CardapioBLL(ICardapioRepository cardapioRepository)
 {
     _cardapioRepository = cardapioRepository;
 }