14 lines
374 B
C#
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);
|
|
}
|
|
}
|