Files
constructdemo/ConstructorApp.DataAccessLayer/Abstract/IFooterDal.cs
2025-05-01 15:18:30 +03:00

10 lines
202 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.DataAccessLayer.Abstract
{
public interface IFooterDal : IGenericDal<Footer>
{
Footer GetFooterDetails();
}
}