예제 #1
0
 public IngredienteProdutoController(IRepositorio repositorio,
                                     IRepositorioIngredienteProduto repositorioIngrediente_Produto,
                                     IRepositorioIngrediente repositorioIngrediente)
 {
     this._repositorio = repositorio;
     this._repositorioIngredienteProduto = repositorioIngrediente_Produto;
     this._repositorioIngrediente        = repositorioIngrediente;
 }
예제 #2
0
 public IngredienteController(IRepositorio repositorio,
                              IRepositorioIngrediente repositorioIngrediente)
 {
     this._repositorio            = repositorio;
     this._repositorioIngrediente = repositorioIngrediente;
 }
예제 #3
0
 public ServicoIngrediente(IRepositorioIngrediente repositorioIngrediente)
 {
     _repositorioIngrediente = repositorioIngrediente;
 }