예제 #1
0
        public List <ClusterInfo> GetListCluster()
        {
            Predict_DAO_MCol   a    = new Predict_DAO_MCol();
            List <ClusterInfo> list = new List <ClusterInfo>();

            try
            {
                a.beginTransaction();
                list = a.GetListCluster();
                a.commitTransaction();
                return(list);
            }
            catch (Exception ex)
            {
                a.rollbackTransaction();
                throw ex;
            }
        }