10 lines
202 B
C#
10 lines
202 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.Abstract
|
|
{
|
|
public interface IFooterDal : IGenericDal<Footer>
|
|
{
|
|
Footer GetFooterDetails();
|
|
}
|
|
}
|