public PaginationWebsiteHandler(IWebsiteRepositoty websiteRepositoty,
                                 IFileService fileService,
                                 IResponseMapper <Website, WebsiteResponse> mapper)
 {
     _websiteRepositoty = websiteRepositoty;
     _fileService       = fileService;
     _mapper            = mapper;
 }
Exemplo n.º 2
0
 public WebsiteCreateOrUpdateHandler(IWebsiteRepositoty websiteRepositoty,
                                     IFileService fileService,
                                     IEntityMapper <WebsiteRequest, Website> mapper,
                                     IPasswordHashService passwordHashService)
 {
     _websiteRepositoty   = websiteRepositoty;
     _fileService         = fileService;
     _mapper              = mapper;
     _passwordHashService = passwordHashService;
 }