Exemplo n.º 1
0
 public void Execute(AddBikeToRentPointCommandContext commandContext)
 {
     _bikeService.AddBikeToRentPoint(
         commandContext.BikeName,
         commandContext.Employee);
 }