Beispiel #1
0
 public bool RemoveProductFromStore(string userName, string storeName, string productBarcode)
 {
     if (real == null)
     {
         return(false);
     }
     return(real.RemoveProductFromStore(userName, storeName, productBarcode));
 }
Beispiel #2
0
 protected bool RemoveProductFromStore(string userName, string storeName, string productBarcode)
 {
     return(service.RemoveProductFromStore(userName, storeName, productBarcode));
 }