я считаю, что всё норм

This commit is contained in:
Николай 2023-04-10 21:27:25 +04:00
parent 821864756b
commit 9d25cecd0a

View File

@ -19,18 +19,15 @@ public class MangaService {
public final MangaRepository mangaRepository;
public final CreatorRepository creatorRepository;
public final ReaderService readerService;
public final ReaderRepository readerRepository;
private final ValidatorUtil validatorUtil;
public MangaService(MangaRepository mangaRepository,
CreatorRepository creatorRepository,
ReaderService readerService,
ReaderRepository readerRepository,
ValidatorUtil validatorUtil) {
this.mangaRepository = mangaRepository;
this.readerService = readerService;
this.creatorRepository = creatorRepository;
this.readerRepository = readerRepository;
this.validatorUtil = validatorUtil;
}