123456789101112131415 |
- 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<RoleProject>
- {
- public List<RoleProject> FindAllByRoleId(int roleId);
- public RoleProject FindByRoleIdAndPro(int roleId,int projectId);
- }
- }
|