public string Register(RPOLogin login) { if (loginGateway.IsExist(login).Count == 0) { if (loginGateway.Register(login) > 0) { return("Registerd successfully"); } else { return("Registration Failed"); } } return("Sorry! You cannot Register more than once"); }