14 lines
386 B
C#
14 lines
386 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface IProjectService : IGenericService<Project>
|
|
{
|
|
void TProjectStatusActive(int id);
|
|
void TProjectStatusPassive(int id);
|
|
int TCountAll();
|
|
Project TGetBySlug(string slug);
|
|
Project TGetProjectWithImagesBySlug(string slug);
|
|
}
|
|
}
|