12 lines
266 B
C#
12 lines
266 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.Abstract
|
|
{
|
|
public interface IContactUsDal : IGenericDal<ContactUs>
|
|
{
|
|
int CountByStatusPending();
|
|
int CountAll();
|
|
void MarkAsRead(int id);
|
|
}
|
|
}
|