Ejemplo n.º 1
0
 public CartsController(ICartService _cartService, ICartProductService _cartProductService, ISalesInformationService _salesInformationService, IPaymentTypeService _paymentTypeService, IUserService _userService)
 {
     cartService             = _cartService;
     cartProductService      = _cartProductService;
     salesInformationService = _salesInformationService;
     paymentTypeService      = _paymentTypeService;
     userService             = _userService;
 }
Ejemplo n.º 2
0
 public SalesInformationController(ISalesInformationService SalesInformationService)
 {
     _SalesInformationService = SalesInformationService;
 }
Ejemplo n.º 3
0
 public SalesInformationsController(ISalesInformationService _salesInformationService)
 {
     salesInformationService = _salesInformationService;
 }