123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Entity;
- using GxPress.Request.Sell;
- using GxPress.Request.Storehouse;
- using GxPress.Result.Storehouse;
- using Datory;
- namespace GxPress.Repository.Interface
- {
-
-
-
- public interface IStorehouseRepository : IRepository
- {
-
-
-
-
-
- Task<bool> InsertAsync(IEnumerable<Storehouse> storehouses);
- Task<PagedList<Storehouse>> GetPageListAsync(PageParameter request);
- Task<StorehouseResult> GetStorehouseChartAsync(StorehouseRequest request);
- }
- }
|