Files
constructdemo/ConstructorApp.BusinessLayer/Abstract/IProjectService.cs
2025-05-01 15:18:30 +03:00

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);
}
}