19 lines
332 B
C#
19 lines
332 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_ttsfjl
|
|
{
|
|
List<t_ttsfjl> GetList(int htbm);
|
|
|
|
OperationResult AddTtsfjl(t_ttsfjl ttt);
|
|
|
|
OperationResult DeleteTtsfjl(t_ttsfjl ttt);
|
|
}
|
|
}
|