Mini.Crm/Mini.Services/Bas/IBasSupplierService.cs

23 lines
669 B
C#

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<Bas_Supplier> 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<Bas_Supplier> GetList();
}
}