- using System;
- using InABox.Mobile;
- using JetBrains.Annotations;
- namespace PRS.Mobile
- {
- public class MobileDigitalFormDocumentHandler : DigitalFormDocumentHandler
- {
- protected override string CachePath => CoreRepository.CacheFolder();
- protected override bool IsConnected => App.Data.IsConnected();
- public MobileDigitalFormDocumentHandler([NotNull] Action<bool> status) : base(status)
- {
- }
- }
- }
|