Bar Load Interface...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
namespace Press
{
interface IBarLoadBLL
{
DataTable getList(string SessionUID,
ref string ErrorMessage);
DataTable getDetail(string SessionUID,
int BarLoadID,
ref string ErrorMessage);
DataTable getBarLockWeight(
string SessionUID,
ref string ErrorMessage);
DataTable getDisplay(int EventID,
string AttemptAmount,
ref string ErrorMessage);
bool UpdateBarLockWeight(
string SessionUID,
string BarWeight,
string LockWeight,
ref string ErrorMessage);
bool Delete(string SessionUID,
int BarLoadID,
ref string ErrorMessage);
bool Modify(string SessionUID,
int BarLoadID,
string Weight, string Color,
string lbsFlag, string Count,
ref string ErrorMessage);
bool Add(string SessionUID,
ref int BarLoadID,
string Weight, string Color,
string lbsFlag, string Count,
ref string ErrorMessage);
}
}