using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading.Tasks; namespace WIDESEA_StorageTaskServices { public class BDCManager : IBDCManager { private readonly List _storageLocations; private readonly List _locationInfos; private readonly object _lock = new object(); public int TotalCapacity => _locationInfos.Count; public int CurrentOccupancy => _storageLocations.Count; public bool AddToBDC(Dt_CarBody body) { throw new NotImplementedException(); } public void GenerateReport() { throw new NotImplementedException(); } public List GetInventory() { throw new NotImplementedException(); } public List RetrieveByColor(int color) { throw new NotImplementedException(); } public List RetrieveByModel(string model) { throw new NotImplementedException(); } public Dt_CarBody RetrieveFromBDC(string bodyId) { throw new NotImplementedException(); } } }