123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.EnumConst;
- using GxPress.Result.AppChannel;
- namespace GxPress.Repository.Interface.AppChannel
- {
- public interface IAppChannelRepository : IRepository
- {
-
-
-
-
-
- Task<Entity.tede2.AppChannel.AppChannel> GetAsync(int id);
-
-
-
-
- Task<IEnumerable<AppChannelResult>> GetAllAsync(AppChannelConst channelTypeValue);
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
-
- Task<bool> UpdateAsync(Entity.tede2.AppChannel.AppChannel request);
-
-
-
-
-
- Task<bool> InsertAsync(Entity.tede2.AppChannel.AppChannel model);
- }
- }
|