Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BusinessLogicsContracts/ICommentLogic.cs

15 lines
513 B
C#
Raw Normal View History

2023-04-01 13:23:19 +04:00
using HardwareShopContracts.BindingModels;
using HardwareShopContracts.SearchModels;
using HardwareShopContracts.ViewModels;
namespace HardwareShopContracts.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);
}
}