22 lines
548 B
C#
22 lines
548 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 IBasRightService : IDependency
|
|
{
|
|
void Create(Bas_RightModel model);
|
|
void Update(Bas_RightModel model);
|
|
void Delete(Bas_RightModel model);
|
|
void CreateList(IList<Bas_RightModel> list);
|
|
Bas_RightModel Get(string id);
|
|
IList<Bas_RightModel> GetList();
|
|
}
|
|
}
|