public async Task <IActionResult> GetEmployeeByPhone(string Phone)
        {
            var response = await HealthService.GetEmployeeByPhone(Phone);//, SiteId);

            // Return as http response
            return(response.ToHttpResponse());
        }