Ejemplo n.º 1
0
 public static INV_MRRInfoMaster GetINV_StoreByStoreID(int StoreID)
 {
     INV_MRRInfoMaster iNV_MRRInfoMaster = new INV_MRRInfoMaster();
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     iNV_MRRInfoMaster = sqlINV_MRRInfoMasterProvider.GetINV_MRRInfoMasterByStoreID(StoreID);
     return iNV_MRRInfoMaster;
 }
Ejemplo n.º 2
0
 public static INV_MRRInfoMaster GetSTD_CampusByCampusID(int CampusID)
 {
     INV_MRRInfoMaster iNV_MRRInfoMaster = new INV_MRRInfoMaster();
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     iNV_MRRInfoMaster = sqlINV_MRRInfoMasterProvider.GetINV_MRRInfoMasterByCampusID(CampusID);
     return iNV_MRRInfoMaster;
 }
Ejemplo n.º 3
0
 public static INV_MRRInfoMaster GetINV_MRRInfoMasterByMRRInfoMasterID(int MRRInfoMasterID)
 {
     INV_MRRInfoMaster iNV_MRRInfoMaster = new INV_MRRInfoMaster();
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     iNV_MRRInfoMaster = sqlINV_MRRInfoMasterProvider.GetINV_MRRInfoMasterByMRRInfoMasterID(MRRInfoMasterID);
     return iNV_MRRInfoMaster;
 }
Ejemplo n.º 4
0
 public static DataSet GetDropDownListAllINV_MRRInfoMaster()
 {
     DataSet iNV_MRRInfoMasters = new DataSet();
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     iNV_MRRInfoMasters = sqlINV_MRRInfoMasterProvider.GetDropDownListAllINV_MRRInfoMaster();
     return iNV_MRRInfoMasters;
 }
Ejemplo n.º 5
0
 public static DataSet GetAllINV_MRRInfoMastersWithRelation()
 {
     DataSet iNV_MRRInfoMasters = new DataSet();
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     iNV_MRRInfoMasters = sqlINV_MRRInfoMasterProvider.GetAllINV_MRRInfoMasters();
     return iNV_MRRInfoMasters;
 }
Ejemplo n.º 6
0
 public static void LoadINV_MRRInfoMasterPage(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);
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     DataSet ds =  sqlINV_MRRInfoMasterProvider.GetINV_MRRInfoMasterPageWise(pageIndex, PageSize, out recordCount);
     gv.DataSource = ds;
     gv.DataBind();
      iNV_MRRInfoMastersPaggination(rptPager,recordCount, pageIndex, PageSize);
 }
Ejemplo n.º 7
0
 public static int InsertINV_MRRInfoMaster(INV_MRRInfoMaster iNV_MRRInfoMaster)
 {
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     return sqlINV_MRRInfoMasterProvider.InsertINV_MRRInfoMaster(iNV_MRRInfoMaster);
 }
Ejemplo n.º 8
0
 public static bool DeleteINV_MRRInfoMaster(int iNV_MRRInfoMasterID)
 {
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     return sqlINV_MRRInfoMasterProvider.DeleteINV_MRRInfoMaster(iNV_MRRInfoMasterID);
 }
Ejemplo n.º 9
0
 public static bool UpdateINV_MRRInfoMaster(INV_MRRInfoMaster iNV_MRRInfoMaster)
 {
     SqlINV_MRRInfoMasterProvider sqlINV_MRRInfoMasterProvider = new SqlINV_MRRInfoMasterProvider();
     return sqlINV_MRRInfoMasterProvider.UpdateINV_MRRInfoMaster(iNV_MRRInfoMaster);
 }