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