public int UpdateGlossary(string GlossaryID, string Term, string Description) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.UpdateGlossary(GlossaryID, Term, Description); return a; }
public int SaveGlossary(string Term, string Description) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.SaveGlossary(Term, Description); return a; }
public DataTable FetchGlossaryDetails(string GlossaryID) { DataTable ds = new DataTable(); GlossaryDAL gl = new GlossaryDAL(); ds = gl.FetchGlossaryDetails(GlossaryID); return ds; }
public DataSet FetchGlossary() { DataSet ds = new DataSet(); GlossaryDAL gl = new GlossaryDAL(); ds = gl.FetchGlossary(); return ds; }
public int DeleteGlossaryDetails(string GlossaryID) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.DeleteGlossaryDetails(GlossaryID); return a; }
public int DeleteGlossaryDetails(string GlossaryID) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.DeleteGlossaryDetails(GlossaryID); return(a); }
public DataTable FetchGlossaryDetails(string GlossaryID) { DataTable ds = new DataTable(); GlossaryDAL gl = new GlossaryDAL(); ds = gl.FetchGlossaryDetails(GlossaryID); return(ds); }
public int UpdateGlossary(string GlossaryID, string Term, string Description) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.UpdateGlossary(GlossaryID, Term, Description); return(a); }
public int SaveGlossary(string Term, string Description) { int a; GlossaryDAL gl = new GlossaryDAL(); a = gl.SaveGlossary(Term, Description); return(a); }
public DataSet FetchGlossary() { DataSet ds = new DataSet(); GlossaryDAL gl = new GlossaryDAL(); ds = gl.FetchGlossary(); return(ds); }