public Customer GetCustomer(int id)
 {
     try
     {
         return(FakeDB.GetCustomer(id));
     }
     catch
     {
         throw new HttpResponseException(HttpStatusCode.BadRequest);
     }
 }