10 lines
209 B
C#
10 lines
209 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface IFooterService : IGenericService<Footer>
|
|
{
|
|
Footer TGetFooterDetails();
|
|
}
|
|
}
|