2024-04-28 21:34:43 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
|
|
|
|
using BankContracts.ViewModels;
|
2024-04-28 20:20:37 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
public interface ICostLogic
|
2024-04-28 20:20:37 +04:00
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
List<CostViewModel> ReadList(CostSearchModel? model = null);
|
|
|
|
|
CostViewModel ReadElement(CostSearchModel model);
|
|
|
|
|
bool Create(CostBindingModel model);
|
|
|
|
|
bool Update(CostBindingModel model);
|
|
|
|
|
bool Delete(CostBindingModel model);
|
2024-04-28 20:20:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|