对比新文件 |
| | |
| | | 锘縰sing System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_IStockRepository; |
| | | |
| | | namespace WIDESEA_IBasicRepository |
| | | { |
| | | public interface IBasicRepository : IDependency |
| | | { |
| | | IAreaInfoRepository AreaInfoRepository { get; } |
| | | |
| | | ILocationInfoRepository LocationInfoRepository { get; } |
| | | |
| | | IMaterielInfoRepository MaterielInfoRepository { get; } |
| | | |
| | | IRoadwayInfoRepository RoadwayInfoRepository { get; } |
| | | |
| | | IWarehouseRepository WarehouseRepository { get; } |
| | | |
| | | IAreaRouterRepository AreaRouterRepository { get; } |
| | | |
| | | ICachePointRepository CachePointRepository { get; } |
| | | |
| | | } |
| | | } |