19 lines
463 B
C#
19 lines
463 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 IBasRightToolButtonService : IDependency
|
|
{
|
|
void CreateList(IList<Bas_RightToolButtonModel> list);
|
|
void Delete(Bas_RightToolButtonModel model);
|
|
IList<Bas_RightToolButtonModel> GetList();
|
|
}
|
|
}
|