PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AccountsContracts/BusinessLogicContracts/IAccountLogic.cs

21 lines
613 B
C#
Raw Normal View History

2023-11-16 19:22:13 +04:00
using AccountsContracts.BindingModels;
using AccountsContracts.SearchModels;
using AccountsContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountsContracts.BusinessLogicContracts
{
public interface IAccountLogic
{
List<AccountViewModel>? ReadList(AccountSearchModel? model);
AccountViewModel? ReadElement(AccountSearchModel model);
bool Create(AccountBindingModel model);
bool Update(AccountBindingModel model);
bool Delete(AccountBindingModel model);
}
}