public IHttpActionResult GetProvidersWithContact()
        {
            var helper = new ProvidersHelper();
            var result = helper.GetProvidersWithContact();

            if (result != null)
            {
                return(Ok(result));
            }

            return(NotFound());
        }