1234567891011121314151617181920212223242526272829303132 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Request.SystemLabel;
- namespace GxPress.Repository.Interface.SystemLabel
- {
- public interface ISystemLableMediaRepository : IRepository
- {
- Task<Entity.SystemLabel.SystemLableMedia> GetAsync(int id);
-
-
-
-
-
- Task<IEnumerable<int>> GetMediaIdsAsync(int lableId, int typeValue);
- Task<bool> DeleteAsync(List<int> ids);
-
-
-
-
-
- Task<bool> InsertAsync(SystemLableMediaRequest request);
-
-
-
-
-
- Task<IEnumerable<int>> GetMediaIdsByTypeValueAsync(int typeValue);
- }
- }
|