27 lines
666 B
C#
27 lines
666 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 IAccountLogic
|
|
{
|
|
List<AccountViewModel>? ReadList(AccountSearchModel? model);
|
|
|
|
AccountViewModel? ReadElement(AccountSearchModel model);
|
|
|
|
bool ChangeBalance(AccountSearchModel? model, int sum);
|
|
|
|
bool Create(AccountBindingModel model);
|
|
|
|
bool Update(AccountBindingModel model);
|
|
|
|
bool Delete(AccountBindingModel model);
|
|
}
|
|
}
|