Example #1
0
 public LancheIngredienteService(ILancheIngredienteRepository repository)
 {
     _repository = repository;
 }
 public LancheService(ILancheRepository repoLanche, ILancheIngredienteRepository repoLancheIngrediente)
 {
     _repoLanche            = repoLanche;
     _repoLancheIngrediente = repoLancheIngrediente;
 }