Mini.Crm/Mini.Services/Bas/IBasRoleService.cs

23 lines
567 B
C#

using Air.Model;
using Mini.Model;
using Mini.Model.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mini.Services.Bas
{
public interface IBasRoleService : IDependency
{
Bas_Role Get(int id);
IList<Bas_Role> GetBasRoleList();
void AddBasRole(Bas_Role basRole);
void UpdateBasRole(Bas_Role basRole);
void DeleteBasRole(Bas_Role basRole);
void Sort(string roleIdStr, string sortIdStr);
object GetRoleTree();
}
}