Files
2025-05-01 15:18:30 +03:00

12 lines
275 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.BusinessLayer.Abstract
{
public interface IContactUsService : IGenericService<ContactUs>
{
int TCountByStatusPending();
int TCountAll();
void TMarkAsRead(int id);
}
}