19 lines
408 B
C#
19 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
public interface It_bwwh
|
|
{
|
|
List<t_bwwh> getAllBwwh(int jcxm);
|
|
OperationResult Update(t_bwwh bw);
|
|
OperationResult Insert(t_bwwh bw);
|
|
OperationResult Delete(t_bwwh bw);
|
|
List<t_bwwh> getAllBwwhIn(int[] jcxm);
|
|
}
|
|
}
|