using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
namespace WIDESEA_IBasicService
{
///
/// 仓库信息服务接口
///
public interface IWarehouseService : IService
{
///
/// 获取仓库信息仓储接口
///
IRepository Repository { get; }
}
}