- using comal.timesheets.QAForms;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace comal.timesheets
- {
- public interface IFormPickerQueryLoader
- {
- public List<ExistingFormShell> QueryIncomplete();
- public List<ExistingFormShell> QueryComplete();
- }
- }
|