Beispiel #1
0
 public static STD_FeesType GetSTD_FeesTypeByFeesTypeID(int FeesTypeID)
 {
     STD_FeesType sTD_FeesType = new STD_FeesType();
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     sTD_FeesType = sqlSTD_FeesTypeProvider.GetSTD_FeesTypeByFeesTypeID(FeesTypeID);
     return sTD_FeesType;
 }
Beispiel #2
0
 public static DataSet GetDropDownListAllSTD_FeesType()
 {
     DataSet sTD_FeesTypes = new DataSet();
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     sTD_FeesTypes = sqlSTD_FeesTypeProvider.GetDropDownLisAllSTD_FeesType();
     return sTD_FeesTypes;
 }
Beispiel #3
0
 public static STD_FeesType GetCOMN_RowStatusByRowStatusID(int RowStatusID)
 {
     STD_FeesType sTD_FeesType = new STD_FeesType();
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     sTD_FeesType = sqlSTD_FeesTypeProvider.GetSTD_FeesTypeByRowStatusID(RowStatusID);
     return sTD_FeesType;
 }
Beispiel #4
0
 public static void LoadSTD_FeesTypePage(System.Web.UI.WebControls.GridView gv, System.Web.UI.WebControls.Repeater rptPager, int pageIndex, DropDownList ddlPageSize)
 {
     int recordCount=0;
     int PageSize =  int.Parse(ddlPageSize.SelectedValue);
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     DataSet ds =  sqlSTD_FeesTypeProvider.GetSTD_FeesTypePageWise(pageIndex, PageSize, out recordCount);
     gv.DataSource = ds;
     gv.DataBind();
      sTD_FeesTypesPaggination(rptPager,recordCount, pageIndex, PageSize);
 }
Beispiel #5
0
 public static bool UpdateSTD_FeesType(STD_FeesType sTD_FeesType)
 {
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     return sqlSTD_FeesTypeProvider.UpdateSTD_FeesType(sTD_FeesType);
 }
Beispiel #6
0
 public static int InsertSTD_FeesType(STD_FeesType sTD_FeesType)
 {
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     return sqlSTD_FeesTypeProvider.InsertSTD_FeesType(sTD_FeesType);
 }
Beispiel #7
0
 public static bool DeleteSTD_FeesType(int sTD_FeesTypeID)
 {
     SqlSTD_FeesTypeProvider sqlSTD_FeesTypeProvider = new SqlSTD_FeesTypeProvider();
     return sqlSTD_FeesTypeProvider.DeleteSTD_FeesType(sTD_FeesTypeID);
 }