1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Entity;
- using GxPress.Request.AppVersion;
- using Datory;
- namespace GxPress.Repository.Interface
- {
- public interface IAppVersionRepository : IRepository
- {
- Task<AppVersion> GetAsync(int id);
- Task<AppVersion> GetAppVersionAsync(AppVersionSearchRequest request);
- Task<int> InsertAsync(AppVersion appVersion);
- Task<bool> UpdateAsync(AppVersion appVersion);
- Task<IEnumerable<AppVersion>> GetAppVersionAsync();
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
- Task<IEnumerable<AppVersion>> GetAppVersionsAsync();
- }
- }
|