public TicketServices(ACTODbContext context, ICustomerServices customerServices, ISaleServices saleServices, IExcursionServices excursionServices)
 {
     this.context           = context;
     this.customerServices  = customerServices;
     this.saleServices      = saleServices;
     this.excursionServices = excursionServices;
 }
        //private readonly ILogger<RegisterModel> _logger;

        public RegisterModel(UserManager <ACTOUser> userManager, ILogger <RegisterModel> logger, ACTODbContext context)
        {
            this._userManager = userManager;
            this.context      = context;
            //_logger = logger;
        }
 public ExcursionOperatorController(ACTODbContext db, IExcursionServices excursionServices, ILanguageServices languageServices)
 {
     this.context           = db;
     this.excursionServices = excursionServices;
     this.languageServices  = languageServices;
 }
Exemple #4
0
 public Initializer(ACTODbContext context)
 {
     this.context = context;
 }
 public LanguageServices(ACTODbContext context)
 {
     this.context = context;
 }
        //private readonly ILogger<RegisterModel> _logger;

        public RegisterModel(Microsoft.AspNetCore.Identity.UserManager <ACTOUser> userManager, ILogger <RegisterModel> logger, ACTODbContext context)
        {
            this._userManager = userManager;
            this.context      = context;
            //_logger = logger;
        }
Exemple #7
0
 public LiquidationServices(ACTODbContext context)
 {
     this.context = context;
 }
Exemple #8
0
 public CustomerServices(ACTODbContext context)
 {
     this.context = context;
 }
Exemple #9
0
 //should have started from the liquidation services... (which should have given commands, but w.e.)
 public RepresentativeController(ACTODbContext db, ITicketServices ticketServices)
 {
     this.ticketServices = ticketServices;
     this.context        = db;
 }
Exemple #10
0
 public CashierController(ACTODbContext context)
 {
     this.context = context;
 }
 public ExcursionServices(ACTODbContext context, ILanguageServices languageServices)
 {
     this.languageServices = languageServices;
     this.context          = context;
 }
Exemple #12
0
 public SaleServices(ACTODbContext context, ILiquidationServices liquidationServices)
 {
     this.context             = context;
     this.liquidationServices = liquidationServices;
 }
 public LoginModel(SignInManager <ACTOUser> signInManager, UserManager <ACTOUser> userManager, ACTODbContext context)
 {
     _signInManager    = signInManager;
     this._userManager = userManager;
     this.context      = context;
 }