GuidToStringConverter.cs 404 B

123456789101112131415161718
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public class GuidToStringConverter : AbstractConverter<Guid,String>
  5. {
  6. public string EmptyText { get; set; }
  7. protected override string Convert(Guid value, object parameter = null)
  8. {
  9. return value != Guid.Empty
  10. ? parameter?.ToString() ?? ""
  11. : EmptyText;
  12. }
  13. }
  14. }