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_jgwh
|
|
{
|
|
List<t_jgwh> GetAlljgwh(int jcxmid);
|
|
String GetAllJgwhStr(int jcxmid);
|
|
OperationResult Update(t_jgwh jgwh);
|
|
OperationResult Insert(t_jgwh jgwh);
|
|
OperationResult Del(t_jgwh jgwh);
|
|
}
|
|
}
|