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