22 lines
569 B
C#
22 lines
569 B
C#
using Air.Model;
|
|
using Air.Model.AirAdminViewModel;
|
|
using Mini.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mini.Services.Bas
|
|
{
|
|
public interface IBasModuleMenuService : IDependency
|
|
{
|
|
void Create(Bas_ModuleMenuModel model);
|
|
void Update(Bas_ModuleMenuModel model);
|
|
void Delete(Bas_ModuleMenuModel model);
|
|
Bas_ModuleMenuModel Get(int Id);
|
|
IList<Bas_ModuleMenuModel> GetList();
|
|
void Sort(string ids, string sortIds);
|
|
}
|
|
}
|