Ejemplo n.º 1
0
 public TicketServices(ACTODbContext context, ICustomerServices customerServices, ISaleServices saleServices, IExcursionServices excursionServices)
 {
     this.context           = context;
     this.customerServices  = customerServices;
     this.saleServices      = saleServices;
     this.excursionServices = excursionServices;
 }
Ejemplo n.º 2
0
 public SalesController(ISaleServices services)
 {
     this._services = services;
 }
Ejemplo n.º 3
0
        //private readonly IUnitOfWork _unitOfWork;

        public ERPController(ISaleServices saleServices, IProductServices productServices, ILogger <ERPController> Apiloger)
        {
            _saleServices    = saleServices;
            _productServices = productServices;
            _Apiloger        = Apiloger;
        }
 public ValuesController(ISaleServices saleService)
 {
     _saleService = saleService;
 }