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 list); Bas_RightModel Get(string id); IList GetList(); } }