1234567891011121314151617181920212223242526272829 |
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Request.App.Collection;
- using GxPress.Result.App.Collection;
- namespace GxPress.Service.Interface.Collection
- {
- public interface ICollectionService : IService
- {
- Task<bool> Insert(CollectionInRequest request);
- Task<PagedList<CollectionListPageResult>> PageListAsync(CollectionPageSearchRequest request);
-
-
-
-
-
- Task<CollectionResult> GetCollectionDetailAsync(int id);
-
-
-
-
-
- Task<PagedList<CollectionNoFolderResult>> GetCollectionNoFolderPageListAsync(CollectionPageSearchRequest request);
- Task<bool> UpdateResultJosnAsync();
- }
- }
|