コード例 #1
0
ファイル: Courier.cs プロジェクト: sumanks3/ACTS-1
 public string ReceiveProduct(ICourierProduct courier)
 {
     return(courier.GetProductType());
 }
コード例 #2
0
ファイル: Courier.cs プロジェクト: KIRTISHD/DAC
 public void ReceiveProduct(ICourierProduct cv)
 {
     cv.GetToAddress();
     cv.GetFromAddress();
     cv.GetProductType();
 }