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);


}
}

posted @ 2018-12-20 09:33  平生。  阅读(114)  评论(0编辑  收藏  举报