namespace Big.Lito.Data.BusinessService { using System.Data; using Big.Lito.Data.DataModel; /// /// Interface IHeightmapService /// public interface IHeightmapService { /// /// Method to get all projects /// /// Data table DataRow GetHeightmapByProjectId(int Id); /// /// Method to get all projects /// /// Data table DataRow GetHeightmapByProjectName(string projectName); /// /// Method to update club member details /// /// club member /// bool UpdateProject(HeightmapModel heightmap); } }