using WMS_GIRAF_Interface.Entities; namespace WMS_GIRAF_Interface.Repositories.Interface; public interface IStorageMainRepository { public STORAGE_MAIN? GetStorageMain(string type, string filterInfo); public bool AddStorageMain(STORAGE_MAIN storageMain); public bool UpdateStorageMain(STORAGE_MAIN storageMain); public bool DeleteStorageMain(STORAGE_MAIN storageMain); }