Ejemplo n.º 1
0
 private void _SaveSASetup(string strModule, string strFistChar, string strLastNbr)
 {
     SASetup _sa = new SASetup();
     _sa.Module = strModule;
     _sa.FistChar = strFistChar;
     _sa.LastNbr = strLastNbr;
     int kq;
     if (_sa.Module != "" && _sa.FistChar != "")
         kq = AP201Ctrl.SaveSASetup(_sa);
 }
Ejemplo n.º 2
0
 public static int SaveSASetup(SASetup info)
 {
     return ConnectDB.ExecuteScalar("sp_SASetupSave",
         new String[] { "Module", "FistChar", "LastNbr" },
         new Object[] { info.Module, info.FistChar, info.LastNbr });
 }