using System.Collections.Generic; using System.Linq; namespace Neo.LegitimateLicences.Data.Models { public partial class LegitimateDatabase { #region GetOutstandingExceptionTasks public List GetOutstandingExceptionTasks(long userID) { return Context.Pr_ExceptionTasksGet(userID).ToList(); } #endregion #region FlagVehicleVinAsCorrect public void FlagVehicleVinAsCorrect(long vehicleID, long userID) { Context.Pr_VehicleFlagVinAsCorrect(vehicleID, userID); } #endregion } }