//User Service methods public bool Registration(bool isAdmin, string username, string password, string name, string surname) { try { return(serviceUser.Registration(isAdmin, username, password, name, surname)); } catch { Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("Connection Error! Database Server Manager Unreacheable!"); Console.ForegroundColor = ConsoleColor.DarkCyan; } return(false); }