Beispiel #1
0
 public void AddOrders(Orders orders)
 {
     iorders.AddOrders(orders);
 }
Beispiel #2
0
 public void EditOrders(Orders orders)
 {
     iorders.EditOrders(orders);
 }
Beispiel #3
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(Orders model)
 {
     return(dal.Edit(model));
 }
Beispiel #4
0
 public void RemoveOrders(Orders orders)
 {
     iorders.RemoveOrders(orders);
 }
Beispiel #5
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(Orders model)
 {
     return(dal.Add(model));
 }