Ejemplo n.º 1
0
 public static Universite GetInstance()//Singleton desing pattern kullandım
 {
     if (instance == null)
     {
         instance = new Universite();
     }
     return(instance);
 }