纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
383 B

3 years ago
  1. using NFine.Data;
  2. using NFine.Domain.Entity.SystemManage;
  3. using System.Collections.Generic;
  4. namespace NFine.Domain.IRepository.SystemManage
  5. {
  6. public interface IRoleRepository : IRepositoryBase<RoleEntity>
  7. {
  8. void DeleteForm(string keyValue);
  9. void SubmitForm(RoleEntity roleEntity, List<RoleAuthorizeEntity> roleAuthorizeEntitys, string keyValue);
  10. }
  11. }