private static void AddAward() { Console.WriteLine("\nEnter the information about award."); string title; while (true) { Console.Write("Title: "); title = Console.ReadLine(); if (title == "") { Console.WriteLine("Data must be field. Try again."); } else { break; } } var award = new Award(title); UserLogic.AddAward(award); }