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 GetCashupUsers public List SearchNewRouteRequests(bool includeWorkflowsAwaitingInfoOnly, bool includeActiveWorkflowsOnly, bool includeActiveTasksOnly, string steps, long userId) { return Context.Pr_NewRouteRequestSearch(includeWorkflowsAwaitingInfoOnly, includeActiveWorkflowsOnly, includeActiveTasksOnly, steps, userId).ToList(); } #endregion } }