Esempio n. 1
0
    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;
    }
Esempio n. 2
0
 public SpearmansRank(NetaDAL.spearmans_ranks myTable)
 {
     CorrelationID   = myTable.correlation_id;
     CorrelationName = myTable.correlation_name;
     SpearmansRho    = myTable.spearmans_rho;
 }