示例#1
0
 public ImageController(UserManager <AppUser> userManager, IEasyCachingProviderFactory cachingProviderFactory, AuthentificationContext db)
 {
     redisController = new RedisService(cachingProviderFactory);
     _userManager    = userManager;
     rpcClient       = new RpcClientService();
     _db             = db;
 }
 public CountController(AuthentificationContext context)
 {
     _context = context;
 }
示例#3
0
 public UserProfileController(UserManager <ApplicationUser> userManager, IOptions <ApplicationSettings> appSettings, AuthentificationContext context)
 {
     _userManager = userManager;
     _appSettings = appSettings.Value;
     _context     = context;
 }
 public QuestionsController(UserManager <AppUser> userManager, AuthentificationContext db)
 {
     _userManager = userManager;
     _db          = db;
 }
示例#5
0
 public TypePatrimoinesController(AuthentificationContext context)
 {
     _context = context;
 }
示例#6
0
 public ValuesController(AuthentificationContext context)
 {
 }
示例#7
0
 public ImageService(RedisService cachingProviderFactory, AuthentificationContext db)
 {
     redisController = cachingProviderFactory;
     rpcClient       = new RpcClientService();
     _db             = db;
 }
 public UserProfileController(UserManager <AppUser> userManager, AuthentificationContext db)
 {
     _userManager = userManager;
     _db          = db;
 }
示例#9
0
 public DirectionsController(AuthentificationContext context)
 {
     _context = context;
 }
示例#10
0
 public PatremoinesController(AuthentificationContext context)
 {
     _context = context;
 }
示例#11
0
 public ResidencesController(AuthentificationContext context)
 {
     _context = context;
 }
 public SubscriptionController(AuthentificationContext db, UserManager <AppUser> userManager)
 {
     _db          = db;
     _userManager = userManager;
 }
示例#13
0
 public GradesController(AuthentificationContext context)
 {
     _context = context;
 }
 public PaymentDetailsController(AuthentificationContext context)
 {
     _context = context;
 }
示例#15
0
 public MessageHub(AuthentificationContext db)
 {
     _db = db;
 }
 public ContactDetailController(AuthentificationContext context)
 {
     _context = context;
 }