using System; using System.Collections.Generic; using System.Text; namespace Big.Lito.Data.DataAccess { using System.Data; using Big.Lito.Data.DataModel; public interface IHeightmapSQL { /// /// Method to get all club members /// /// Data table DataRow GetHeightmapByProjectId(int Id); /// /// Method to get all club members /// /// Data table DataRow GetHeightmapByProjectName(string Name); /// /// Method to update club member details /// /// club member /// bool UpdateProject(HeightmapModel heightmapModel); } }