// GET: api/Customer/5 public Customer GetCustomerByNationalNumber(string cNationalNumber) { ClaimsPrincipal p = RequestContext.Principal as ClaimsPrincipal; return(CustomerDA.GetCustomerByNationalNumber(cNationalNumber, p.Claims)); }