Beispiel #1
0
 public bool AddProductToStore(string managerName, string storeName, string productCode, int amount)
 {
     if (real == null)
     {
         return(true);
     }
     return(real.AddProductToStore(managerName, storeName, productCode, amount));
 }
Beispiel #2
0
 protected bool AddProductToStore(string managerName, string storeName, string productCode, int amount)
 {
     return(service.AddProductToStore(managerName, storeName, productCode, amount));
 }