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