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

10 lines
256 B
C#

using ConstructorApp.EntityLayer.Entities;
namespace ConstructorApp.BusinessLayer.Abstract
{
public interface IProjectGalleryService : IGenericService<ProjectGallery>
{
List<ProjectGallery> TGetImagesByProjectId(int projectId);
}
}