コード例 #1
0
 public ProductService(UnitOfWork unitOfWork)
 {
     Repo   = unitOfWork.Products;
     Mapper = new ProductMapper(Repo);
 }
コード例 #2
0
 public UnitOfWork()
 {
     _context               = new StockManagmentContext();
     productRepository      = new EfCoreProductRepository(_context);
     productGroupRepository = new EfCoreComercialProductGroupRepository(_context);
 }