public IHttpActionResult GetUserAccount([FromBody] LoginModel account)
        {
            ParticipantHelper helper = new ParticipantHelper();

            return(Ok(helper.GetParticipant(account.Username, account.Password)));
        }