/// <summary>
        ///
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="searchCriteria"></param>
        /// <param name="page"></param>
        /// <param name="pageSize"></param>
        /// <param name="specification"></param>
        /// <param name="dataRepository"></param>
        /// <param name="uow"></param>
        /// <returns></returns>
        public IncidentSystemMarkedSearchVMDC SearchIncidentSystemMarked(string currentUser, string user, string appID, string overrideID, IncidentSystemMarkedSearchCriteriaDC searchCriteria, int page, int pageSize,
                                                                         ISpecification <IncidentSystemMarked> specification, IRepository <IncidentSystemMarked> dataRepository, IUnitOfWork uow, IExceptionManager exceptionManager, IMappingService mappingService)
        {
            try
            {
                #region Parameter validation

                // Validate parameters
                if (string.IsNullOrEmpty(currentUser))
                {
                    throw new ArgumentOutOfRangeException("currentUser");
                }
                if (string.IsNullOrEmpty(user))
                {
                    throw new ArgumentOutOfRangeException("user");
                }
                if (string.IsNullOrEmpty(appID))
                {
                    throw new ArgumentOutOfRangeException("appID");
                }
                if (null == dataRepository)
                {
                    throw new ArgumentOutOfRangeException("dataRepository");
                }
                if (null == specification)
                {
                    throw new ArgumentOutOfRangeException("specification");
                }
                if (null == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }
                if (null == exceptionManager)
                {
                    throw new ArgumentOutOfRangeException("exceptionManager");
                }
                if (null == mappingService)
                {
                    throw new ArgumentOutOfRangeException("mappingService");
                }

                #endregion

                using (uow)
                {
                    // Evaluate search criteria if supplied
                    if (null != searchCriteria)
                    {
                        EvaluateSearchCriteria(searchCriteria, ref specification);
                    }

                    // Set default sort expression
                    System.Linq.Expressions.Expression <Func <IncidentSystemMarked, Object> > sortExpression = x => new { x.RowIdentifier };

                    // Find all items that satisfy the specification created above.
                    IEnumerable <IncidentSystemMarked> dataEntities = dataRepository.Find(specification, sortExpression, page, pageSize);

                    // Get total count of items for search critera
                    int itemCount = dataRepository.Count(specification);

                    IncidentSystemMarkedSearchVMDC results = new IncidentSystemMarkedSearchVMDC();

                    // Convert to data contracts
                    List <IncidentSystemMarkedSearchMatchDC> destinations = mappingService.Map <IEnumerable <IncidentSystemMarked>, List <IncidentSystemMarkedSearchMatchDC> >(dataEntities);

                    results.MatchList      = destinations;
                    results.SearchCriteria = searchCriteria;
                    results.RecordCount    = itemCount;

                    return(results);
                }
            }
            catch (Exception e)
            {
                //Prevent exception from propogating across the service interface
                exceptionManager.ShieldException(e);

                return(null);
            }
        }
 // Partial method for evaluation of search criteria
 partial void EvaluateSearchCriteria(IncidentSystemMarkedSearchCriteriaDC searchCriteria, ref ISpecification <IncidentSystemMarked> specification);
        /// <summary>
        ///
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="searchCriteria"></param>
        /// <param name="page"></param>
        /// <param name="pageSize"></param>
        /// <returns></returns>
        public IncidentSystemMarkedSearchVMDC SearchIncidentSystemMarked(string currentUser, string user, string appID, string overrideID, IncidentSystemMarkedSearchCriteriaDC searchCriteria, int page, int pageSize)
        {
            // Create unit of work
            IUnitOfWork uow = new UnitOfWork(currentUser);

            // Create repository
            IRepository <IncidentSystemMarked> dataRepository = new Repository <IncidentSystemMarked>(uow.ObjectContext, currentUser, user, appID, overrideID);

            // Create specification for filtering
            ISpecification <IncidentSystemMarked> specification = new Specification <IncidentSystemMarked>();

            //Create ExceptionManager
            IExceptionManager exceptionManager = new ExceptionManager();

            //Create MappingService
            IMappingService mappingService = new MappingService();

            // Call overload with injected objects
            return(SearchIncidentSystemMarked(currentUser, user, appID, overrideID, searchCriteria, page, pageSize, specification, dataRepository, uow, exceptionManager, mappingService));
        }