using Air.Model; using Air.Model.AirAdminViewModel; using Mini.Model; using System.Collections.Generic; namespace Mini.Services.Bas { public interface IBasRightGroupService : IDependency { void Create(Bas_RightGroupModel model); void Update(Bas_RightGroupModel model); void Delete(Bas_RightGroupModel model); Bas_RightGroupModel Get(int Id); IList GetList(); object GetAllTreeList(); object GetTopTreeList(); object GetNodeTreeList(int id); object GetRightTreeList(bool isSelect = false); } }