PIbd-33_Nevaeva_KA_COP_28/NevaevaLibrary/AccountContracts/BusinessLogicsContracts/IAccountLogic.cs

21 lines
610 B
C#
Raw Normal View History

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