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); }
public static int SaveSASetup(SASetup info) { return ConnectDB.ExecuteScalar("sp_SASetupSave", new String[] { "Module", "FistChar", "LastNbr" }, new Object[] { info.Module, info.FistChar, info.LastNbr }); }