예제 #1
0
파일: DemoService.cs 프로젝트: pangsen/DDD
 public string Test(TestCommand command)
 {
     Console.WriteLine($"{command.Name},{command.Password}");
     return("executed");
 }
예제 #2
0
파일: DemoService.cs 프로젝트: pangsen/DDD
 public TestCommand Test(TestCommand command)
 {
     return(command);
 }