PIbd-23_Elatomtsev_L.K._Cou.../Bank/BankContracts/BusinessLogicsContracts/IRefillLogic.cs

15 lines
473 B
C#

using BankContracts.BindingModels;
using BankContracts.SearchModels;
using BankContracts.ViewModels;
namespace BankContracts.BusinessLogicsContracts
{
public interface IRefillLogic
{
List<RefillViewModel>? ReadList(RefillSearchModel? model);
RefillViewModel? ReadElement(RefillSearchModel model);
bool Create(RefillBindingModel model);
bool Update(RefillBindingModel model);
bool Delete(RefillBindingModel model);
}
}