Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public UserProfileController(UserManager <ApplicationUser> userManager, IOptions <ApplicationSettings> appSettings, AuthentificationContext context)
 {
     _userManager = userManager;
     _appSettings = appSettings.Value;
     _context     = context;
 }
Ejemplo n.º 4
0
 public QuestionsController(UserManager <AppUser> userManager, AuthentificationContext db)
 {
     _userManager = userManager;
     _db          = db;
 }
Ejemplo n.º 5
0
 public TypePatrimoinesController(AuthentificationContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public ValuesController(AuthentificationContext context)
 {
 }
Ejemplo n.º 7
0
 public ImageService(RedisService cachingProviderFactory, AuthentificationContext db)
 {
     redisController = cachingProviderFactory;
     rpcClient       = new RpcClientService();
     _db             = db;
 }
Ejemplo n.º 8
0
 public UserProfileController(UserManager <AppUser> userManager, AuthentificationContext db)
 {
     _userManager = userManager;
     _db          = db;
 }
Ejemplo n.º 9
0
 public DirectionsController(AuthentificationContext context)
 {
     _context = context;
 }
Ejemplo n.º 10
0
 public PatremoinesController(AuthentificationContext context)
 {
     _context = context;
 }
Ejemplo n.º 11
0
 public ResidencesController(AuthentificationContext context)
 {
     _context = context;
 }
Ejemplo n.º 12
0
 public SubscriptionController(AuthentificationContext db, UserManager <AppUser> userManager)
 {
     _db          = db;
     _userManager = userManager;
 }
Ejemplo n.º 13
0
 public GradesController(AuthentificationContext context)
 {
     _context = context;
 }
 public PaymentDetailsController(AuthentificationContext context)
 {
     _context = context;
 }
Ejemplo n.º 15
0
 public MessageHub(AuthentificationContext db)
 {
     _db = db;
 }
 public ContactDetailController(AuthentificationContext context)
 {
     _context = context;
 }