Beispiel #1
0
 public AccountServices(ApplicationDbContext context, IMasterDataServices setupSvc, ApplicationUserManager userManager, ApplicationRoleManager roleManager)
 {
     this.context      = context;
     this._setupSvc    = setupSvc;
     this._userManager = userManager;
     this._roleManager = roleManager;
 }
Beispiel #2
0
 public EmailController(IEmailServices service, IMasterDataServices setupSvc, IAppReminderJobServices reminderSvc)
 {
     _service       = service;
     _setupServices = setupSvc;
     _reminderSvc   = reminderSvc;
 }
 public MasterDataController(IMasterDataServices masterDataServices)
 {
     this.masterDataServices = masterDataServices;
 }
Beispiel #4
0
 public EmailServices(ApplicationDbContext context, IMasterDataServices setupSvc)
 {
     this.context   = context;
     this._setupSvc = setupSvc;
 }
Beispiel #5
0
 public TicketController(IMasterDataServices masterDataSvc) : base()
 {
     _masterDataSvc = masterDataSvc;
 }
Beispiel #6
0
 public ShowTimeServices(ApplicationDbContext ctx, IMasterDataServices setupSvc, IWordTextReplacementServices wordSvc)
     : base(ctx, setupSvc, wordSvc)
 {
 }
 public CrudServiceBase(ApplicationDbContext context, IMasterDataServices setupSvc, IWordTextReplacementServices wordSvc)
 {
     this.context  = context;
     this.SetupSvc = setupSvc;
     this._wordSvc = wordSvc;
 }
Beispiel #8
0
 public ShowtimeController(IMasterDataServices setupSvc) : base()
 {
     _setupSvc = setupSvc;
 }