2024-04-19 12:27:20 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
2024-04-27 15:37:39 +04:00
|
|
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
2024-04-19 12:27:20 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-04-27 15:37:39 +04:00
|
|
|
|
public interface ICashierLogic
|
2024-04-19 12:27:20 +04:00
|
|
|
|
{
|
|
|
|
|
List<CashierViewModel>? ReadList(CashierSearchModel? model);
|
|
|
|
|
|
|
|
|
|
CashierViewModel? ReadElement(CashierSearchModel model);
|
|
|
|
|
|
|
|
|
|
bool Create(CashierBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Update(CashierBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Delete(CashierBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|