Exemplo n.º 1
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && partyId != null)
            {
                return($"{parent.Path()}/parties/{partyId}");
            }

            return($"{parent.Path()}/parties");
        }
Exemplo n.º 2
0
 public string Path()
 {
     return($"{parent.Path()}/supervise");
 }