19 lines
525 B
C#
19 lines
525 B
C#
|
using PortalAccountsContracts.BindingModels;
|
|||
|
using PortalAccountsContracts.SearchModels;
|
|||
|
using PortalAccountsContracts.ViewModels;
|
|||
|
|
|||
|
namespace PortalAccountsContracts.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);
|
|||
|
}
|
|||
|
}
|