15 lines
473 B
C#
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);
|
|
}
|
|
} |