Beispiel #1
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && timezoneId != null)
     {
         return($"{parent.Path()}/timezone/{timezoneId}");
     }
     return($"{parent.Path()}/timezone");
 }
Beispiel #2
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && greetingId != null)
     {
         return($"{parent.Path()}/greeting/{greetingId}");
     }
     return($"{parent.Path()}/greeting");
 }
Beispiel #3
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && stateId != null)
     {
         return($"{parent.Path()}/state/{stateId}");
     }
     return($"{parent.Path()}/state");
 }
Beispiel #4
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && brandId != null)
     {
         return($"{parent.Path()}/brand/{brandId}");
     }
     return($"{parent.Path()}/brand");
 }
Beispiel #5
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && countryId != null)
     {
         return($"{parent.Path()}/country/{countryId}");
     }
     return($"{parent.Path()}/country");
 }
Beispiel #6
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && permissionId != null)
     {
         return($"{parent.Path()}/permission/{permissionId}");
     }
     return($"{parent.Path()}/permission");
 }
Beispiel #7
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && languageId != null)
     {
         return($"{parent.Path()}/language/{languageId}");
     }
     return($"{parent.Path()}/language");
 }
Beispiel #8
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && roleId != null)
     {
         return($"{parent.Path()}/user-role/{roleId}");
     }
     return($"{parent.Path()}/user-role");
 }
Beispiel #9
0
 public string Path()
 {
     return($"{parent.Path()}/fax-cover-page");
 }
Beispiel #10
0
 public string Path()
 {
     return($"{parent.Path()}/location");
 }