Esempio n. 1
0
 public int UpdateLP(string LPID, string LPName, string LPCategory, string Description, string Religion, string Dynasty, int Active)
 {
     int a;
     LPDetailsDAL lp = new LPDetailsDAL();
     a = lp.UpdateLP(LPID, LPName, LPCategory, Description, Religion, Dynasty, Active);
     return a;
 }
Esempio n. 2
0
 public DataTable FetchLPDetails(string LPID)
 {
     DataTable ds = new DataTable();
     LPDetailsDAL lp = new LPDetailsDAL();
     ds = lp.FetchLPDetails(LPID);
     return ds;
 }
Esempio n. 3
0
 public DataSet FetchLP1()
 {
     DataSet ds = new DataSet();
     LPDetailsDAL lp = new LPDetailsDAL();
     ds = lp.FetchLP1();
     return ds;
 }
Esempio n. 4
0
 public int DeleteLP(string LPID)
 {
     int a;
     LPDetailsDAL lp = new LPDetailsDAL();
     a = lp.DeleteLP(LPID);
     return a;
 }
Esempio n. 5
0
    public int DeleteLP(string LPID)
    {
        int          a;
        LPDetailsDAL lp = new LPDetailsDAL();

        a = lp.DeleteLP(LPID);
        return(a);
    }
Esempio n. 6
0
    public int UpdateLP(string LPID, string LPName, string LPCategory, string Description, string Religion, string Dynasty, int Active)
    {
        int          a;
        LPDetailsDAL lp = new LPDetailsDAL();

        a = lp.UpdateLP(LPID, LPName, LPCategory, Description, Religion, Dynasty, Active);
        return(a);
    }
Esempio n. 7
0
    public DataTable FetchLPDetails(string LPID)
    {
        DataTable    ds = new DataTable();
        LPDetailsDAL lp = new LPDetailsDAL();

        ds = lp.FetchLPDetails(LPID);
        return(ds);
    }
Esempio n. 8
0
    public DataSet FetchLP1()
    {
        DataSet      ds = new DataSet();
        LPDetailsDAL lp = new LPDetailsDAL();

        ds = lp.FetchLP1();
        return(ds);
    }