33 lines
833 B
C#
33 lines
833 B
C#
|
|
namespace Big.Lito.Data.BusinessService
|
|
{
|
|
using System.Data;
|
|
using Big.Lito.Data.DataModel;
|
|
|
|
/// <summary>
|
|
/// Interface IHeightmapService
|
|
/// </summary>
|
|
public interface IHeightmapService
|
|
{
|
|
/// <summary>
|
|
/// Method to get all projects
|
|
/// </summary>
|
|
/// <returns>Data table</returns>
|
|
DataRow GetHeightmapByProjectId(int Id);
|
|
|
|
/// <summary>
|
|
/// Method to get all projects
|
|
/// </summary>
|
|
/// <returns>Data table</returns>
|
|
DataRow GetHeightmapByProjectName(string projectName);
|
|
|
|
/// <summary>
|
|
/// Method to update club member details
|
|
/// </summary>
|
|
/// <param name="project">club member</param>
|
|
/// <returns></returns>
|
|
bool UpdateProject(HeightmapModel heightmap);
|
|
|
|
}
|
|
}
|