public static SpearmansRank CreateCorrelationsTable(spearmans_ranks table) { SpearmansRank ret = new SpearmansRank(); ret.CorrelationID = table.correlation_id; ret.CorrelationName = table.correlation_name; ret.SpearmansRho = table.spearmans_rho; return ret; }
public SpearmansRank(NetaDAL.spearmans_ranks myTable) { CorrelationID = myTable.correlation_id; CorrelationName = myTable.correlation_name; SpearmansRho = myTable.spearmans_rho; }