using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using Neo.LegitimateLicences.Common; using Neo.Afx.Security; using System.Data.Entity; namespace Neo.LegitimateLicences.Data.Models { public partial class LegitimateDatabase { #region GetTATApplicationsPendingDataRelease public List GetTATApplicationsPendingDataRelease(long userID) { return Context.Pr_TAT_ApplicationsPendingDataReleaseGet(userID).ToList(); } #endregion #region ReleaseTATApplicationsPendingData public void ReleaseTATApplicationsPendingData(long tatApplicationDetailID, string comments, long userID) { Context.Pr_TAT_ApplicationsReleaseData(tatApplicationDetailID, comments, userID); } #endregion } }