예제 #1
0
 public UserApplication(MakeFriendDbContext context, IStorageService storageService, ISessionService sessionService, IFeatureApplication featureApplication)
 {
     _context            = context;
     _storageService     = storageService;
     _sessionService     = sessionService;
     _featureApplication = featureApplication;
 }
 public ProfilesController(MakeFriendDbContext context, IStorageService storageService, IUserApplication userApplication, IFeatureApplication featureApplication)
 {
     _context            = context;
     _storageService     = storageService;
     _userApplication    = userApplication;
     _featureApplication = featureApplication;
 }
예제 #3
0
 /// <summary>Construtor do hangfire controller</summary>
 /// <param name="featureApplication">Feature de application</param>
 /// <param name="backgroundJobClient">Background hangout client</param>
 public HangFireController(
     IFeatureApplication featureApplication,
     IBackgroundJobClient backgroundJobClient
     )
 {
     FeatureApplication  = featureApplication;
     BackgroundJobClient = backgroundJobClient;
 }
예제 #4
0
 public AuthenticatesController(MakeFriendDbContext context, IStorageService storageService, IMailService mailService, IConfiguration config, IMailchimpService mailchimpService, IFeatureApplication featureApplication)
 {
     _context            = context;
     _storageService     = storageService;
     _mailService        = mailService;
     _config             = config;
     _mailchimpService   = mailchimpService;
     _featureApplication = featureApplication;
 }
예제 #5
0
 public UsersController(MakeFriendDbContext context, IStorageService storageService, ISessionService sessionService, IUserApplication userApplication, IFeatureApplication featureApplication, INotificationApplication notificationApp)
 {
     _context            = context;
     _storageService     = storageService;
     _sessionService     = sessionService;
     _userApplication    = userApplication;
     _featureApplication = featureApplication;
     _notificationApp    = notificationApp;
 }