public FornecedoresController(IApplicationFornecedor _appFornecedores,
                               IApplicationShared _appShared)
 {
     appFornecedores = _appFornecedores;
     appShared       = _appShared;
 }
 public FornecedoresController(IApplicationFornecedor applicationFornecedor)
 {
     _applicationFornecedor = applicationFornecedor;
 } //constructor
示例#3
0
 public ProdutosController(IApplicationProduto _appProdutos,
                           IApplicationFornecedor _appFornecedores)
 {
     appProdutos     = _appProdutos;
     appFornecedores = _appFornecedores;
 }