21 lines
572 B
C#
21 lines
572 B
C#
using BlogContracts.BindingModel;
|
|
using BlogContracts.SearchModels;
|
|
using BlogContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BlogContracts.BusinessLogicContracts
|
|
{
|
|
public interface IUserLogic
|
|
{
|
|
List<UserViewModel>? ReadList(UserSearchModel? model);
|
|
UserViewModel? ReadElement(UserSearchModel model);
|
|
bool Create(UserBindingModel model);
|
|
bool Update(UserBindingModel model);
|
|
bool Delete(UserBindingModel model);
|
|
}
|
|
}
|