Exemplo 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;
 }
 public ExcursionOperatorController(ACTODbContext db, IExcursionServices excursionServices, ILanguageServices languageServices)
 {
     this.context           = db;
     this.excursionServices = excursionServices;
     this.languageServices  = languageServices;
 }