public ShopCustomer AddCustomer(string userId, string name, string street, string city, string postalCode, string country)
 {
     return(shopService.AddCustomer(userId, name, street, city, postalCode, country));
 }