using Air.Model; using Air.Model.AirAdminViewModel; using Mini.Common; using Mini.Model; using Mini.Model.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mini.Services.Bas { public interface IBasSupplierService : IDependency { List GetList(ref Pager pager, string name, string licence, string linkman, string linkphone); Bas_SupplierModel GetModel(int id); bool Create(Bas_SupplierModel m, ref ValidationErrors erro); bool Update(Bas_SupplierModel m, ref ValidationErrors erro); List GetList(); } }