123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Request.AppStartPage;
- namespace GxPress.Repository.Interface.AppStartPage
- {
- public interface IAppStartPageRepository : IRepository
- {
-
-
-
-
-
- Task<Entity.tede2.AppStartPage.AppStartPage> GetAsync(int appTypeId);
-
-
-
-
- Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync();
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
-
- Task<bool> UpdateAsync(AppStartPageUpdateRequest request);
-
-
-
-
-
- Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model);
- }
- }
|