hutongqing
2024-12-28 0d7a45d8c1f4c4a6bec82a1fd49e951dc6de6bc5
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/BasicService.cs
@@ -14,20 +14,20 @@
{
    public class BasicService : IBasicService
    {
        /// <summary>
        ///
        /// </summary>
        public ILocationInfoService LocationInfoService { get; }
        public IMaterielInfoService MaterielInfoService { get; }
        public IWarehouseService WarehouseService { get; }
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService)
        public ISupplierInfoService SupplierInfoService { get; }
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService, ISupplierInfoService supplierInfoService)
        {
            LocationInfoService = locationInfoService;
            MaterielInfoService = materielInfoService;
            WarehouseService = warehouseService;
            SupplierInfoService = supplierInfoService;
        }
    }
}