public Customer NewCustomer([FromBody] Customer newCustomer)
        {
            using (CustomerContext Context = new CustomerContext())
              {
            Context.Customers.Add(newCustomer);
            Context.SaveChanges();
              }

              return newCustomer;
        }