对比新文件 |
| | |
| | | 锘縰sing System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_IBasicRepository; |
| | | using WIDESEA_IStockRepository; |
| | | |
| | | namespace WIDESEA_BasicRepository |
| | | { |
| | | public class BasicRepository : IBasicRepository |
| | | { |
| | | public IAreaInfoRepository AreaInfoRepository { get; } |
| | | |
| | | public ILocationInfoRepository LocationInfoRepository { get; } |
| | | |
| | | public IMaterielInfoRepository MaterielInfoRepository { get; } |
| | | |
| | | public IRoadwayInfoRepository RoadwayInfoRepository { get; } |
| | | |
| | | public IWarehouseRepository WarehouseRepository { get; } |
| | | |
| | | public IAreaRouterRepository AreaRouterRepository { get; } |
| | | |
| | | public ICachePointRepository CachePointRepository { get; } |
| | | public IStockInfoDetailRepository StockInfoDetailServiceRepository { get; } |
| | | |
| | | public BasicRepository(IAreaInfoRepository areaInfoRepository, ILocationInfoRepository locationInfoRepository, IMaterielInfoRepository materielInfoRepository, IRoadwayInfoRepository roadwayInfoRepository, IWarehouseRepository warehouseRepository, IAreaRouterRepository areaRouterRepository, ICachePointRepository cachePointRepository, IStockInfoDetailRepository stockInfoDetailServiceRepository) |
| | | { |
| | | AreaInfoRepository = areaInfoRepository; |
| | | LocationInfoRepository = locationInfoRepository; |
| | | MaterielInfoRepository = materielInfoRepository; |
| | | RoadwayInfoRepository = roadwayInfoRepository; |
| | | WarehouseRepository = warehouseRepository; |
| | | AreaRouterRepository = areaRouterRepository; |
| | | CachePointRepository = cachePointRepository; |
| | | StockInfoDetailServiceRepository = stockInfoDetailServiceRepository; |
| | | } |
| | | } |
| | | } |