24 lines
704 B
C#
24 lines
704 B
C#
|
using Subd_4.BindingModels;
|
|||
|
using Subd_4.SearchModels;
|
|||
|
using Subd_4.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Subd_4.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);
|
|||
|
bool TakeProjectInWork(ProjectBindingModel model);
|
|||
|
bool FinishProject(ProjectBindingModel model);
|
|||
|
bool DeliveryProject(ProjectBindingModel model);
|
|||
|
}
|
|||
|
}
|