Exemplo n.º 1
0
 public AuthController(DataDbContect context, IHostingEnvironment hostingEnvironment, IJwtFactory jwtFactory, IOptions <JwtIssuerOptions> jwtOptions, ICommonService configuration)
 {
     _hostingEnvironment = hostingEnvironment;
     _jwtFactory         = jwtFactory;
     _jwtOptions         = jwtOptions.Value;
     _context            = context;
     _configuration      = configuration;
 }
 public PushNotificationsApiController(
     IPushSubscriptionStore subscriptionStore, IPushNotificationService notificationService, IPushNotificationService pushNotificationService,
     IPushNotificationsQueue pushNotificationsQueue, IJwtFactory jwtFactory, DataDbContect context, IHttpContextAccessor acceessor)
 {
     _subscriptionStore       = subscriptionStore;
     _notificationService     = notificationService;
     _pushNotificationsQueue  = pushNotificationsQueue;
     _pushNotificationService = pushNotificationService;
     _jwtFactory = jwtFactory;
     _context    = context;
     _acceessor  = acceessor;
 }
Exemplo n.º 3
0
 public SqlitePushSubscriptionStore(PushSubscriptionContext context, DataDbContect dbcontext)
 {
     _context   = context;
     _dbcontext = dbcontext;
 }
Exemplo n.º 4
0
 public ItemController(DataDbContect context, IJwtFactory jwtFactory)
 {
     _context    = context;
     _jwtFactory = jwtFactory;
 }
Exemplo n.º 5
0
 public OrderController(DataDbContect context, IHostingEnvironment hostingEnvironment, IJwtFactory jwtFactory)
 {
     _hostingEnvironment = hostingEnvironment;
     _jwtFactory         = jwtFactory;
     _context            = context;
 }