33 lines
849 B
C#
33 lines
849 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 ISystemSettingsSQL
|
|
{
|
|
/// <summary>
|
|
/// Method to get all club members
|
|
/// </summary>
|
|
/// <returns>Data table</returns>
|
|
DataRow GetSystemSettingsByProjectId(int Id);
|
|
|
|
/// <summary>
|
|
/// Method to get all club members
|
|
/// </summary>
|
|
/// <returns>Data table</returns>
|
|
DataRow GetSystemSettingsByProjectName(string Name);
|
|
|
|
/// <summary>
|
|
/// Method to update club member details
|
|
/// </summary>
|
|
/// <param name="project">club member</param>
|
|
/// <returns></returns>
|
|
bool UpdateProject(SystemSettingsModel systemSettingsModel);
|
|
|
|
}
|
|
}
|