| 123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- using IwbZero.AppServiceBase;
- using VberTech.BaseSysInfo;
- using VberTech.FinancialRecords.Dto;
- namespace VberTech.FinancialRecords
- {
- public interface IFinancialRecordAppService : IIwbAsyncCrudAppService<FinancialRecordDto, int, PagedRequestDto, FinancialRecordCreateDto, FinancialRecordUpdateDto >
- {
- Task Import(ExcelImportDto input);
- Task<string> Export(PagedRequestDto input);
- Task<List<SelectListItem>> GetSelectList();
- Task<string> GetSelectStr();
- #region Get
- Task<FinancialRecord> GetEntityById(int id);
- Task<FinancialRecord> GetEntityByNo(string no);
- Task<FinancialRecordDto> GetDtoById(int id);
- Task<FinancialRecordDto> GetDtoByNo(string no);
- #endregion
- }
- }
|