using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TaskTrackerContracts.BindingModels; using TaskTrackerContracts.SearchModels; using TaskTrackerContracts.ViewModels; namespace TaskTrackerContracts.BusinessLogicContracts { public interface IProjectLogic { List? ReadList(ProjectSearchModel? model); ProjectViewModel? ReadElement(ProjectSearchModel model); bool Create(ProjectBindingModel model); bool Update(ProjectBindingModel model); bool Delete(ProjectBindingModel model); } }