DateTimeToBooleanConverter.cs 424 B

123456789101112131415161718
  1. using System;
  2. using System.Globalization;
  3. using System.Security;
  4. using InABox.Core;
  5. using Xamarin.Forms;
  6. namespace InABox.Mobile
  7. {
  8. public class DateTimeToBooleanConverter : AbstractConverter<DateTime,bool>
  9. {
  10. public bool EmptyResult { get; set; }
  11. protected override bool Convert(DateTime value, object? parameter = null)
  12. {
  13. return value.IsEmpty() == EmptyResult;
  14. }
  15. }
  16. }