Esempio n. 1
0
 public DataTable GetHubs()
 {
     try
     {
         return(conn.executeSelectQuery("sp_GetHubs"));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Esempio n. 2
0
 public DataTable GetDefalutCashMode()
 {
     try
     {
         return(conn.executeSelectQuery("sp_GetDefalutCash"));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Esempio n. 3
0
 public DataTable GetAppModules(string module)
 {
     try
     {
         SqlParameter[] sqlParameters = new SqlParameter[1];
         sqlParameters[0] = new SqlParameter("@module", module);
         return(conn.executeSelectQuery("sp_GetAppModules", sqlParameters));
     }
     catch (Exception e)
     {
         throw e;
     }
 }