예제 #1
0
 public AlbumAdminFormService(IAuthenticationService authenticationService, IAuthorizationService authorizationService, IAlbumValidator albumValidator, IElementFactory elementFactory, IFormHelperService formHelperService)
 {
     _authenticationService = authenticationService;
     _authorizationService  = authorizationService;
     _albumValidator        = albumValidator;
     _elementFactory        = elementFactory;
     _formHelperService     = formHelperService;
 }
예제 #2
0
 public AlbumService(IAlbumRepository albumRepository, IAlbumValidator albumValidator, IImageAnalysisService imageAnalysisService, IUnitOfWorkFactory unitOfWorkFactory, IUploadService uploadService)
 {
     _albumRepository      = albumRepository;
     _albumValidator       = albumValidator;
     _imageAnalysisService = imageAnalysisService;
     _unitOfWorkFactory    = unitOfWorkFactory;
     _uploadService        = uploadService;
 }