22 lines
614 B
C#
22 lines
614 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_htfzb
|
|||
|
|
{
|
|||
|
|
List<t_htfzb> GetListByhtbm(int htbm);
|
|||
|
|
List<t_htfzb> GetListByhtbm(int[] htbm);
|
|||
|
|
OperationResult Insert(t_htfzb b, List<t_htxmb> xmb);
|
|||
|
|
OperationResult Update(t_htfzb b, List<t_htxmb> xmb);
|
|||
|
|
OperationResult Delete(t_htfzb b);
|
|||
|
|
t_htfzb GetModelByfzbm(int fzbm);
|
|||
|
|
List<t_htfzb> GetModelListByfzbm(int fzbm);
|
|||
|
|
t_htfzb GethtfzbmByhtbmAndhtfzmc(int htbm, string htfzmc);
|
|||
|
|
}
|
|||
|
|
}
|