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 getAllBwwh(int jcxm); OperationResult Update(t_bwwh bw); OperationResult Insert(t_bwwh bw); OperationResult Delete(t_bwwh bw); List getAllBwwhIn(int[] jcxm); } }