IFormPickerQueryLoader.cs 233 B

12345678910
  1. using System.Collections.Generic;
  2. namespace PRS.Mobile
  3. {
  4. public interface IFormPickerQueryLoader
  5. {
  6. public List<ExistingFormShell> QueryIncomplete();
  7. public List<ExistingFormShell> QueryComplete();
  8. }
  9. }