예제 #1
0
 public void AnyNamedMethod(CustomType request)
 {
     Dependency.Record(request);
 }
예제 #2
0
 public void AnyNamedMethod(CustomType request)
 {
     FooMethodReceived = request;
 }
예제 #3
0
 public void Record(CustomType msg)
 {
     CustomTypeReceived = msg;
 }
예제 #4
0
 public CustomType BarMethod(CustomType request)
 {
     BarMethodReceived = request;
     return(request);
 }