public ReadOnlyPechatProductRepositoryDecorator(IReadOnlyPechatProductRepository pechatproductRepository)
 {
     _pechatproductRepository = pechatproductRepository;
 }
 public GetPechatProductListUseCase(IReadOnlyPechatProductRepository readOnlyPechatProductRepository)
 => _readOnlyPechatProductRepository = readOnlyPechatProductRepository;
 public CachedReadOnlyPechatProductRepository(IReadOnlyPechatProductRepository pechatproductRepository,
                                              IDomainObjectsCache <PechatProduct> pechatproductsCache)
     : base(pechatproductRepository)
     => _pechatproductsCache = pechatproductsCache;