public ConfigController(InfoScreenContext context,
                         IMembershipService membershipService,
                         IDataService dataService,
                         IHostingEnvironment hostEnvironment,
                         IDataProtectionProvider dataProtectionProvider,
                         IEncryptionService encryptionService)
     : base(dataService, hostEnvironment)
 {
     _context            = context;
     _membershipService  = membershipService;
     _encryptionService  = encryptionService;
     _hostingEnvironment = hostEnvironment;
 }
Esempio n. 2
0
 public DataService(InfoScreenContext context) : base(context)
 {
 }
 public VolatileDataService(InfoScreenContext context) : base(context)
 {
 }
 public GenericDataService(InfoScreenContext context)
 {
     _context = context;
 }