using ForumContracts.BindingModels; using ForumContracts.SearchModels; using ForumContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ForumContracts.BusinessLogicContracts { public interface IUserLogic { List? ReadList(UserSearchModel? model); UserViewModel? ReadElement(UserSearchModel model); bool Create(UserBindingModel model); bool Update(UserBindingModel model); bool Delete(UserBindingModel model); } }