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

14 lines
374 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.DataAccessLayer.Abstract
{
public interface IProjectDal : IGenericDal<Project>
{
void ProjectStatusActive(int id);
void rojectStatusPassive(int id);
int CountAll();
Project GetBySlug(string slug);
Project GetProjectWithImagesBySlug(string slug);
}
}