gpt4 book ai didi

c# - 聚合存储库/服务模式

转载 作者:太空宇宙 更新时间:2023-11-03 15:37:43 24 4
gpt4 key购买 nike

我有以下示例,我想知道何时将其拆分到其他存储库中。我有一个产品列表,其中包含类别、产品线和产品类型。您可以添加、删除和编辑所有这些,但是这项服务是否做得太多了?:

public interface IProductService : IServiceBase
{
void DeleteProductCategory(int productCategoryId);
IEnumerable<ProductCategory> GetAllProductCategories();
IEnumerable<ProductCategory> GetDisplayedProductCategories();
ProductCategory GetProductCategory(int productCategoryId);
ProductCategory SaveProductCategory(ProductCategory productCategory);

void DeleteProductLine(int productLineId);
IEnumerable<ProductLine> GetAllProductLines();
IEnumerable<ProductLine> GetDisplayedProductLines();
ProductLine GetProductLine(int productLineId);
ProductLine SaveProductLine(ProductLine productLine);

void DeleteProductType(int productTypeId);
IEnumerable<ProductType> GetAllProductTypes();
IEnumerable<ProductType> GetDisplayedProductTypes();
ProductType GetProductType(int productTypeId);
ProductType SaveProductType(ProductType productType);

IEnumerable<Product> GetProductsByCategory(int productCategoryId);
IEnumerable<Product> GetProductsByLine(int productLineId);
IEnumerable<Product> GetProductsByType(int productTypeId);
}

我正在使用存储库模式,所以现在我还必须为此注入(inject)所有存储库:

public ProductService(
IRepository<Product> productRepo,
IRepository<ProductCategory> productCategoryRepo,
IRepository<ProductLine> productLineRepo,
IRepository<ProductType> productTypeRepo,
IValidationService validationService,
IUnitOfWork unitOfWork
)
: base(validationService, unitOfWork)
{
Enforce.ArgumentNotNull(productRepo, "productRepo");
Enforce.ArgumentNotNull(productCategoryRepo, "productCategoryRepo");
Enforce.ArgumentNotNull(productLineRepo, "productLineRepo");
Enforce.ArgumentNotNull(productTypeRepo, "productTypeRepo");

this.productRepo = productRepo;
this.productCategoryRepo = productCategoryRepo;
this.productLineRepo = productLineRepo;
this.productTypeRepo = productTypeRepo;
}

在我看来,这是很多依赖项。我应该何时/如何拆分它们?

最佳答案

我个人希望创建一些基本的通用服务类,然后从中继承一些服务。像这样

public abstract class GeneralService<T>
{
private IRepository<T> _repository;
public GeneralService(IRepository<T> repository)
{
_repository = repository;
}

public abstract void Delete(int Id);
public abstract IEnumerable<T> GetAll();
public abstract IEnumerable<T> GetDisplayed();
public abstract T Get(int Id);
public abstract T Save(T t);

public abstract IEnumerable<Product> GetProducts(int Id);
}

public interface IRepository<T>
{
...
}

public class ProductService : GeneralService<Product>
{
...
}

public class ProductLineService:GeneralService<ProductLine>
{
...
}

关于c# - 聚合存储库/服务模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31278952/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com