10 lines
197 B
C#
10 lines
197 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.Abstract
|
|
{
|
|
public interface IReferenceDal : IGenericDal<Reference>
|
|
{
|
|
int CountAll();
|
|
}
|
|
}
|