public string GeHumanRepresentation(IValuePresenter presenter)
 {
     try
     {
         return(presenter.Presentation());
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }
Example #2
0
 public string Presentation()
 {
     return($"Pattern: {_patternValuePresenter.Presentation()}, Options: {_optionsValuePresenter}");
 }
Example #3
0
 public string Presentation()
 {
     return($"string: {_stringValuePresenter.Presentation()}, objectId: {_objectIdValuePresenter.Presentation()}");
 }