10 lines
204 B
C#
10 lines
204 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface IReferenceService : IGenericService<Reference>
|
|
{
|
|
int TCountAll();
|
|
}
|
|
}
|