2024-05-04 16:27:50 +03:00
|
|
|
|
using Contracts.BindingModels;
|
2024-05-04 19:34:42 +03:00
|
|
|
|
using Contracts.SearchModels;
|
|
|
|
|
using Contracts.ViewModels;
|
2024-05-04 16:27:50 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IProjectLogic
|
|
|
|
|
{
|
|
|
|
|
List<ProjectViewModel>? ReadList(ProjectSearchModel? model);
|
|
|
|
|
ProjectViewModel? ReadElement(ProjectSearchModel model);
|
|
|
|
|
bool Create(ProjectBindingModel model);
|
|
|
|
|
bool Update(ProjectBindingModel model);
|
|
|
|
|
bool Delete(ProjectBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|