9 lines
167 B
C#
9 lines
167 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.Abstract
|
|
{
|
|
public interface ISliderDal : IGenericDal<Slider>
|
|
{
|
|
}
|
|
}
|