18 lines
379 B
C#
18 lines
379 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 Its_khlxr
|
|||
|
|
{
|
|||
|
|
List<ts_khlxr> GetlxrBykhbm(int khbm);
|
|||
|
|
List<ts_khlxr> GetlxrBylxrbm(int lxrbm);
|
|||
|
|
OperationResult Insert(ts_khlxr lxr);
|
|||
|
|
OperationResult Update(ts_khlxr lxr);
|
|||
|
|
}
|
|||
|
|
}
|