123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Entity;
- using GxPress.Request.Finance;
- using GxPress.Result.Finance;
- using Datory;
- namespace GxPress.Repository.Interface
- {
- public interface IFinanceRepository : IRepository
- {
- Task<bool> InsertAsync(IEnumerable<Finance> finances);
-
-
-
-
- Task<PagedList<Finance>> GetPageListAsync(PageParameter request);
-
-
-
-
-
- Task<FinanceResult> GetFinanceChartAsync(FinanceRequest request);
- }
- }
|