Exemplo n.º 1
0
        public static EnrollmentDSSStatic getTDTEntity( bool isSingleton )
        {
            if ( isSingleton )
            {
                if ( tdtEntity == null )
                    tdtEntity = new EnrollmentDSSStatic();

                return tdtEntity;
            }
            else
            {
                tdtEntity = new EnrollmentDSSStatic();
                return tdtEntity;
            }
        }
Exemplo n.º 2
0
 public static void setTdtEntity()
 {
     tdtEntity = new EnrollmentDSSStatic();
 }
Exemplo n.º 3
0
 public static EnrollmentDSSStatic getTDTEntity()
 {
     if ( tdtEntity == null )
         tdtEntity = new EnrollmentDSSStatic();
     return tdtEntity;
 }