예제 #1
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static HR_Tax GetHR_TaxByTaxID(int TaxID)
 {
     HR_Tax hR_Tax = new HR_Tax();
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     hR_Tax = sqlHR_TaxProvider.GetHR_TaxByTaxID(TaxID);
     return hR_Tax;
 }
예제 #2
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static HR_Tax GetHR_EmployeeByEmployeeID(string EmployeeID)
 {
     HR_Tax hR_Tax = new HR_Tax();
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     hR_Tax = sqlHR_TaxProvider.GetHR_TaxByEmployeeID(EmployeeID);
     return hR_Tax;
 }
예제 #3
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static DataSet GetDropDownListAllHR_Tax()
 {
     DataSet hR_Taxs = new DataSet();
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     hR_Taxs = sqlHR_TaxProvider.GetDropDownListAllHR_Tax();
     return hR_Taxs;
 }
예제 #4
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static DataSet GetAllHR_TaxsWithRelation()
 {
     DataSet hR_Taxs = new DataSet();
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     hR_Taxs = sqlHR_TaxProvider.GetAllHR_Taxs();
     return hR_Taxs;
 }
예제 #5
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static void LoadHR_TaxPage(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);
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     DataSet ds =  sqlHR_TaxProvider.GetHR_TaxPageWise(pageIndex, PageSize, out recordCount);
     gv.DataSource = ds;
     gv.DataBind();
      hR_TaxsPaggination(rptPager,recordCount, pageIndex, PageSize);
 }
예제 #6
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static int InsertHR_Tax(HR_Tax hR_Tax)
 {
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     return sqlHR_TaxProvider.InsertHR_Tax(hR_Tax);
 }
예제 #7
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static bool DeleteHR_Tax(int hR_TaxID)
 {
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     return sqlHR_TaxProvider.DeleteHR_Tax(hR_TaxID);
 }
예제 #8
0
파일: HR_TaxManager.cs 프로젝트: anam/mal
 public static bool UpdateHR_Tax(HR_Tax hR_Tax)
 {
     SqlHR_TaxProvider sqlHR_TaxProvider = new SqlHR_TaxProvider();
     return sqlHR_TaxProvider.UpdateHR_Tax(hR_Tax);
 }