NewGaoKaoApi/New_College.IServices/IRoleServices.cs

17 lines
344 B
C#

using New_College.IServices.BASE;
using New_College.Model.Models;
using System.Threading.Tasks;
namespace New_College.IServices
{
/// <summary>
/// RoleServices
/// </summary>
public interface IRoleServices :IBaseServices<Role>
{
Task<Role> SaveRole(string roleName);
Task<string> GetRoleNameByRid(int rid);
}
}