public async Task <IEnumerable <Employee> > GetAll() { var apiResult = await ApiUtility.GetApiResponse(Constant.ApiURL); return(JsonConvert.DeserializeObject <IEnumerable <Employee> >(apiResult)); }