15 lines
457 B
C#
15 lines
457 B
C#
using BankContracts.BindingModels;
|
|
using BankContracts.SearchModels;
|
|
using BankContracts.ViewModels;
|
|
|
|
namespace BankContracts.BusinessLogicsContracts
|
|
{
|
|
public interface ITermLogic
|
|
{
|
|
List<TermViewModel>? ReadList(TermSearchModel? model);
|
|
TermViewModel? ReadElement(TermSearchModel model);
|
|
bool Create(TermBindingModel model);
|
|
bool Update(TermBindingModel model);
|
|
bool Delete(TermBindingModel model);
|
|
}
|
|
} |