Files
constructdemo/ConstructorApp.DataAccessLayer/Abstract/IReferenceDal.cs
2025-05-01 15:18:30 +03:00

10 lines
197 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.DataAccessLayer.Abstract
{
public interface IReferenceDal : IGenericDal<Reference>
{
int CountAll();
}
}