Tiandele
2026-03-20 daea1a90c2fa1b5cc2f52e62be15bd95cc4155f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_IStorageTaskServices
{
    public interface IBDCManager
    {
        List<DtLocationInfo> TotalCapacity { get; }
 
        int CurrentOccupancy { get; }
 
        List<Dt_CarBodyInfo> GetInventory();
 
        Task<bool> AddToBDC(Dt_CarBodyInfo body);
 
        Dt_CarBodyInfo RetrieveFromBDC(string bodyId);
 
        List<Dt_CarBodyInfo> RetrieveByModel(string model);
 
        List<Dt_CarBodyInfo> RetrieveByColor(int color);
 
        void GenerateReport();
    }
}