using Model.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BizService { public interface IRoleProjectService : IBaseService { public List FindAllByRoleId(int roleId); public RoleProject FindByRoleIdAndPro(int roleId,int projectId); } }