BigLitho/Large.Lito.Data/DataAccess/IHeightmapSQL.cs

33 lines
824 B
C#

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
{
/// <summary>
/// Method to get all club members
/// </summary>
/// <returns>Data table</returns>
DataRow GetHeightmapByProjectId(int Id);
/// <summary>
/// Method to get all club members
/// </summary>
/// <returns>Data table</returns>
DataRow GetHeightmapByProjectName(string Name);
/// <summary>
/// Method to update club member details
/// </summary>
/// <param name="project">club member</param>
/// <returns></returns>
bool UpdateProject(HeightmapModel heightmapModel);
}
}