IRoleProjectService.cs 384 B

123456789101112131415
  1. using Model.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BizService
  8. {
  9. public interface IRoleProjectService : IBaseService<RoleProject>
  10. {
  11. public List<RoleProject> FindAllByRoleId(int roleId);
  12. public RoleProject FindByRoleIdAndPro(int roleId,int projectId);
  13. }
  14. }