Esempio n. 1
0
 public PedidoController(IProductoBLL ProductoBLL, ICarroBLL CarroBLL, IUsuarioBLL UsuarioBLL, IPedidoBLL PedidoBLL)
 {
     this._productoBLL = ProductoBLL;
     this._carroBLL    = CarroBLL;
     this._usuarioBLL  = UsuarioBLL;
     this._pedidoBLL   = PedidoBLL;
 }
Esempio n. 2
0
 public CarroController(IProductoBLL productoBLL, ICarroBLL carroBLL, IUsuarioBLL usuarioBLL)
 {
     this._productoBLL = productoBLL;
     this._carroBLL    = carroBLL;
     this._usuarioBLL  = usuarioBLL;
 }