コード例 #1
0
 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;
 }
コード例 #2
0
 public DetectImagesController(IImageScoreApplication imageScoreApplication)
 {
     _imageScoreApp = imageScoreApplication;
 }