Add project files.
This commit is contained in:
11
ConstructorApp.DataAccessLayer/Abstract/ITestimonialDal.cs
Normal file
11
ConstructorApp.DataAccessLayer/Abstract/ITestimonialDal.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using ConstructorApp.EntityLayer.Entities;
|
||||
|
||||
namespace ConstructorApp.DataAccessLayer.Abstract
|
||||
{
|
||||
public interface ITestimonialDal : IGenericDal<Testimonial>
|
||||
{
|
||||
void TestimonialStatusActive(int id);
|
||||
void TestimonialStatusPassive(int id);
|
||||
int CountAll();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user