public string GetCustomerById(string customerId)
 {
     if (string.IsNullOrWhiteSpace(customerId))
     {
         return(new Customer("invalid", "invalid").ToString());
     }
     return(customerDao.Read(customerId).ToString());
 }