12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Request.SystemLabel;
- using GxPress.Result.SystemLabel;
- namespace GxPress.Service.Interface.SystemLabel
- {
- public interface ISystemLabelService : IService
- {
- Task<PagedList<SystemLabelResult>> GetAllPageAsync(SystemLabelRequest request);
- Task<IEnumerable<SystemLabelResult>> GetAllAsync();
-
-
-
-
-
- Task<PagedList<SystemLabelResult>> GetAllStarLablePageAsync(Common.Page.PageParameter request);
-
-
-
-
- Task<IEnumerable<SystemLabelResult>> GetStarLableAllAsync();
- }
- }
|