IFormPickerQueryLoader.cs 304 B

12345678910111213
  1. using comal.timesheets.QAForms;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace comal.timesheets
  6. {
  7. public interface IFormPickerQueryLoader
  8. {
  9. public List<ExistingFormShell> QueryIncomplete();
  10. public List<ExistingFormShell> QueryComplete();
  11. }
  12. }