Esempio n. 1
0
 public static string saveTableFTeamMetric(List <string> _arr)
 {
     SystemObjects.TableF _tablef = new SystemObjects.TableF();
     _tablef.TeamID         = Convert.ToInt32(_arr[0].ToString());
     _tablef.MetricID       = Convert.ToInt32(_arr[1].ToString());
     _tablef.TargetDirect   = _arr[2].ToString();
     _tablef.Target         = Convert.ToDecimal(_arr[3].ToString());
     _tablef.TargetDescript = _arr[4].ToString();
     _tablef.WorkdayID      = Convert.ToInt32(_arr[5].ToString());
     _tablef.SourceName     = _arr[6].ToString();
     return(_tablef.InsertTeamMetric());
 }
Esempio n. 2
0
 public static string saveTableFTeamMetric(List<string> _arr)
 {
     SystemObjects.TableF _tablef = new SystemObjects.TableF();
     _tablef.TeamID = Convert.ToInt32(_arr[0].ToString());
     _tablef.MetricID = Convert.ToInt32(_arr[1].ToString());
     _tablef.TargetDirect = _arr[2].ToString();
     _tablef.Target = Convert.ToDecimal(_arr[3].ToString());
     _tablef.TargetDescript = _arr[4].ToString();
     _tablef.WorkdayID = Convert.ToInt32(_arr[5].ToString());
     _tablef.SourceName = _arr[6].ToString();
     return _tablef.InsertTeamMetric();
 }