Beispiel #1
0
 public ImageApplication(MakeFriendDbContext context, IStorageService storageService, ISessionService sessionService)
 {
     _context        = context;
     _storageService = storageService;
     _sessionService = sessionService;
 }
Beispiel #2
0
 public NotificationApplication(IHubContext <ChatHub> hub, MakeFriendDbContext context, IStorageService storageService)
 {
     _hub            = hub;
     _context        = context;
     _storageService = storageService;
 }
 public FeatureApplication(MakeFriendDbContext context)
 {
     _context = context;
 }
 public ImageScoreApplication(MakeFriendDbContext context)
 {
     _context = context;
 }
 public AccessController(MakeFriendDbContext context, ISessionService sessionService)
 {
     _context        = context;
     _sessionService = sessionService;
 }
Beispiel #6
0
 public AccessMiddleware(MakeFriendDbContext context)
 {
     _context = context;
 }
 public RelationshipApplication(MakeFriendDbContext context, IStorageService storageService, INotificationApplication notificationApplication)
 {
     _context = context;
     _notificationApplication = notificationApplication;
     _storageService          = storageService;
 }
 public ChatsController(IHubContext <ChatHub> hub, MakeFriendDbContext context, IStorageService storageService)
 {
     _hub            = hub;
     _context        = context;
     _storageService = storageService;
 }