using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using Neo.LegitimateLicences.Common; using Neo.Afx.ComponentModel; using Neo.Afx.Security; using Neo.LegitimateLicences.Common.Helpers; using System.Threading; using System.Data.Entity; namespace Neo.LegitimateLicences.Data.Models { public partial class LegitimateDatabase { #region SearchLicenceIssueDetails public List SearchLicenceIssueDetails(string applicationRequestTypes, bool includeWorkflowsAwaitingInfoOnly, bool includeActiveWorkflowsOnly, bool includeActiveTasksOnly, string steps, long userID) { return Context.Pr_LicenceIssuingSearch(applicationRequestTypes, includeWorkflowsAwaitingInfoOnly, includeActiveWorkflowsOnly, includeActiveTasksOnly, steps, userID).ToList(); } #endregion #region SearchLicenceCancelDetails public List SearchLicenceCancelDetails(bool includeWorkflowsAwaitingInfoOnly, bool includeActiveWorkflowsOnly, bool includeActiveTasksOnly, string steps, long userID) { return Context.Pr_LicenceCancelSearch(includeWorkflowsAwaitingInfoOnly, includeActiveWorkflowsOnly, includeActiveTasksOnly, steps, userID).ToList(); } #endregion } }