16 lines
550 B
C#
16 lines
550 B
C#
using ComputerHardwareStoreContracts.BindingModels;
|
|
using ComputerHardwareStoreContracts.SearchModels;
|
|
using ComputerHardwareStoreContracts.ViewModels;
|
|
|
|
namespace ComputerHardwareStoreContracts.BusinessLogicsContracts
|
|
{
|
|
public interface ICommentLogic
|
|
{
|
|
List<CommentViewModel>? ReadList(CommentSearchModel? model);
|
|
CommentViewModel? ReadElement(CommentSearchModel model);
|
|
bool Create(CommentBindingModel model);
|
|
bool Update(CommentBindingModel model);
|
|
bool Delete(CommentBindingModel model);
|
|
}
|
|
}
|