25 lines
607 B
C#
25 lines
607 B
C#
|
using BankYouBankruptContracts.BindingModels;
|
|||
|
using BankYouBankruptContracts.SearchModels;
|
|||
|
using BankYouBankruptContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface ICashierLogic
|
|||
|
{
|
|||
|
List<CashierViewModel>? ReadList(CashierSearchModel? model);
|
|||
|
|
|||
|
CashierViewModel? ReadElement(CashierSearchModel model);
|
|||
|
|
|||
|
bool Create(CashierBindingModel model);
|
|||
|
|
|||
|
bool Update(CashierBindingModel model);
|
|||
|
|
|||
|
bool Delete(CashierBindingModel model);
|
|||
|
}
|
|||
|
}
|