Add project files.
This commit is contained in:
13
ConstructorApp.DataAccessLayer/Abstract/IProjectDal.cs
Normal file
13
ConstructorApp.DataAccessLayer/Abstract/IProjectDal.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user