Ejemplo n.º 1
0
 private List<Partion> getPartion_ByU_SubCategoryID(Clustering_Users_DAO dao, string U_SubCategoryID)
 {
     List<Partion> list = dao.getPartion_ByU_SubCategoryID(U_SubCategoryID);
     foreach (var item in list)
         item.UserCentroid = dao.getUserCentroid(item.ClusterID);
     return list;
 }
Ejemplo n.º 2
0
 private List<Partion> getPartion_ByU_CategoryID_ForMergeGreoup(Clustering_Users_DAO dao, string categoryName)
 {
     List<Partion> list = dao.getPartion_ByU_CategoryID_ForMergeGreoup(categoryName);
     foreach (var item in list)
         item.UserCentroid = dao.getUserCentroid(item.ClusterID);
     return list;
 }