20 lines
628 B
C#
20 lines
628 B
C#
using Air.Model;
|
|
using Air.Model.AirAdminViewModel;
|
|
using Mini.Model;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mini.Services.Bas
|
|
{
|
|
public interface IBasLeftMenuService : IDependency
|
|
{
|
|
void Create(Bas_LeftMemuModel model);
|
|
void Update(Bas_LeftMemuModel model);
|
|
void Delete(Bas_LeftMemuModel model);
|
|
Bas_LeftMemuModel Get(int Id);
|
|
IList<Bas_LeftMenuTreeViewModel> GetBasLeftMenuByModuleId(int moduleId, string[] rightIds);
|
|
void Sort(string ids, string sortIds);
|
|
object GetTreeList_leftMenu();
|
|
object GetTreeList_leftMenu(string[] userRights);
|
|
}
|
|
}
|