public BusinessCarro(IRepositoryCarro repositoryCarro)
 {
     _repositoryCarro = repositoryCarro;
 }
 public CarroController(IRepositoryCarro repo)
 {
     this.repo = repo;
 }
示例#3
0
 public CarroBLL(IRepositoryCarro repositoryCarro, IProductoBLL productoBLL)
 {
     this._repositoryCarro = repositoryCarro;
     this._productoBLL     = productoBLL;
 }
 public HomeController(IRepositoryCarro repositoryCarro)
 {
     _repositoryCarro = repositoryCarro;
 }