I just try to create one of WCF to get all client details. When I try to run that WCF which get data from SP its show this error:

Caught exception:

And also when put break point that time I see the ID is coming but still error showing same.
Class code:
public class CommanCall
{
    string Connection = "Data Source=USER-PC\\SQLEXPRESS;Initial Catalog=BlueEyeNewDatabase;Integrated Security=True";
    public List<Client> SelectAllClient(int id)
    {
        List<Client> ClientList = new List<Client>();
        using (var Context = new EmpSystemContext(Connection))
        {
            var DbResult = Context.SelectClientDetails(id);
            if (DbResult != null)
            {
                foreach (var Row in DbResult)
                {   
                    Client clist = new Client
                    {
                        ClientName = Row.ClientName,
                        ClientAddress = Row.ClientAddress,
                        PreferredCurrency = Row.PreferredCurrency,
                        FirstName = Row.FirstName,
                        LastName = Row.LastName,
                        City = Row.City,
                        State = Row.State,
                        Country = Row.Country,
                        PostalCode = Row.PostalCode,
                        ContactName = Row.ContactName,
                        ContactNumber = Row.ContactNumber,
                        Email = Row.Email,
                        ContactEmail = Row.ContactEmail
                    };
                    ClientList.Add(clist);
                }
            }
        }                      
       return ClientList;
   }
}
Service.svc.cs
public class Service1 : IService1
{
    public static EmpSystem.Domain.CommanCall Comman;
    public ListResponce<Client> GetAllClientDetailsById(int id)
    {
        ListResponce<Client> lstclientResp = new ListResponce<Client>();
        lstclientResp.Message = "Taru kai na thai ek record find na thayo";
        lstclientResp.Success = false;
        int id1 = id;
        List<Client> lstclient = Comman.SelectAllClient(id);
        lstclientResp.Result = lstclient;
        if(lstclient!=null)
        {
            lstclientResp.Message = "Congo hahahhah Record Find thaya";
            lstclientResp.Success = true;
        }
        return new ListResponce<Client>
        {
            Message = lstclientResp.Message,
            Success = lstclientResp.Success,
            Result = lstclientResp.Result
        };           
    }      
}
IService file
public interface IService1
{
    [OperationContract]
    [System.ServiceModel.Web.WebInvoke(Method = "GET", ResponseFormat = System.ServiceModel.Web.WebMessageFormat.Json, BodyStyle = System.ServiceModel.Web.WebMessageBodyStyle.Wrapped)]
    ListResponce<Client> GetAllClientDetailsById(int id);
}
 
    