15 lines
489 B
C#
15 lines
489 B
C#
|
using BankContracts.BindingModels;
|
|||
|
using BankContracts.SearchModels;
|
|||
|
using BankContracts.ViewModels;
|
|||
|
|
|||
|
namespace BankContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ICurrencyLogic
|
|||
|
{
|
|||
|
List<CurrencyViewModel>? ReadList(CurrencySearchModel? model);
|
|||
|
CurrencyViewModel? ReadElement(CurrencySearchModel model);
|
|||
|
bool Create(CurrencyBindingModel model);
|
|||
|
bool Update(CurrencyBindingModel model);
|
|||
|
bool Delete(CurrencyBindingModel model);
|
|||
|
}
|
|||
|
}
|