예제 #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();
 }