Example #1
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && partyId != null)
     {
         return($"{parent.Path()}/parties/{partyId}");
     }
     return($"{parent.Path()}/parties");
 }
Example #2
0
 public string Path()
 {
     return($"{parent.Path()}/supervise");
 }