// Проверить логин на уникальность
 public static bool CheckLogin(string Login)
 {
     return !DBOperations.GetLogins().Contains(Login);
 }