1234567891011121314151617181920 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Request.Role;
- namespace GxPress.Repository.Interface.SystemRoleMenus
- {
- public interface ISystemRoleMenusRepository : IRepository
- {
-
-
-
-
-
- Task<bool> InsertAsync(SystemRoleMenusInRequest models);
- Task<IEnumerable<Entity.SystemRole.SystemRoleMenus>> GetAllAsync(int roleId);
- Task<bool> DeleteAsync(int roleId);
- }
- }
|