3-商品管理ID

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MEH.Month.Test.Model;
using System.Linq.Expressions;

namespace MEH.Month.Test.IDAL
{
public interface ICommon
{
int Add(ProductInfo m);
int Del(int ID);
int Dels(string IDs);
int Update(ProductInfo m);
int UpdateState(int ID,int State);
ProductInfo Fill(int ID);
List<ProductInfo> Show(Expression<Func<ProductInfo, bool>> Where);


}
}

原文地址:https://www.cnblogs.com/PingShengI/p/10147496.html