public ImagesController(MakeFriendDbContext context, IStorageService storageService, ISessionService sessionService, IImageApplication imageApplication, IUserApplication userApplication)
 {
     _context          = context;
     _storageService   = storageService;
     _sessionService   = sessionService;
     _imageApplication = imageApplication;
     _userApplication  = userApplication;
 }
 public ImagesController(MakeFriendDbContext context, IStorageService storageService, ISessionService sessionService,
                         IImageApplication imageApplication, IUserApplication userApplication, IDetectImageService detectImageService,
                         IImageScoreApplication imageScoreApplication, INotificationApplication notificationApp)
 {
     _context               = context;
     _storageService        = storageService;
     _sessionService        = sessionService;
     _imageApplication      = imageApplication;
     _userApplication       = userApplication;
     _detectService         = detectImageService;
     _imageScoreApplication = imageScoreApplication;
     _notificationApp       = notificationApp;
 }