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

10 lines
249 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.DataAccessLayer.Abstract
{
public interface IProjectGalleryDal : IGenericDal<ProjectGallery>
{
List<ProjectGallery> GetImagesByProjectId(int projectId);
}
}