MobileDigitalFormDocumentHandler.cs 443 B

12345678910111213141516
  1. using System;
  2. using InABox.Mobile;
  3. using JetBrains.Annotations;
  4. namespace PRS.Mobile
  5. {
  6. public class MobileDigitalFormDocumentHandler : DigitalFormDocumentHandler
  7. {
  8. protected override string CachePath => CoreRepository.CacheFolder();
  9. protected override bool IsConnected => App.Data.IsConnected();
  10. public MobileDigitalFormDocumentHandler([NotNull] Action<bool> status) : base(status)
  11. {
  12. }
  13. }
  14. }