/// <summary>
        ///  Create a Title
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="dc"></param>
        /// <param name="dataRepository"></param>
        /// <param name="uow"></param>
        public TitleVMDC CreateTitle(string currentUser, string user, string appID, string overrideID, TitleDC dc, IRepository <Title> dataRepository, IUnitOfWork uow)
        {
            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 == dc)
                {
                    throw new ArgumentOutOfRangeException("dc");
                }
                if (null == dataRepository)
                {
                    throw new ArgumentOutOfRangeException("dataRepository");
                }
                if (null == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }

                #endregion

                using (uow)
                {
                    // Create a new ID for the Title item
                    dc.Code = Guid.NewGuid();

                    // Map data contract to model
                    Title destination = Mapper.Map <TitleDC, Title>(dc);

                    // Add the new item
                    dataRepository.Add(destination);

                    // Commit unit of work
                    uow.Commit();
                }

                // Create aggregate data contract
                TitleVMDC returnObject = new TitleVMDC();

                // Add new item to aggregate
                returnObject.TitleItem = dc;

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

                return(null);
            }
        }
        /// <summary>
        /// Retrieve a Title with associated lookups
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="code"></param>
        /// <param name="dataRepository"></param>
        /// <param name="uow"></param>
        /// <returns></returns>
        public TitleVMDC GetTitle(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <Title> dataRepository
                                  )

        {
            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 == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }

                #endregion

                using (uow)
                {
                    TitleDC destination = null;

                    // If code is null then just return supporting lists
                    if (!string.IsNullOrEmpty(code))
                    {
                        // Convert code to Guid
                        Guid codeGuid = Guid.Parse(code);

                        // Retrieve specific Title
                        Title dataEntity = dataRepository.Single(x => x.Code == codeGuid);

                        // Convert to data contract for passing through service interface
                        destination = Mapper.Map <Title, TitleDC>(dataEntity);
                    }



                    // Create aggregate contract
                    TitleVMDC returnObject = new TitleVMDC();

                    returnObject.TitleItem = destination;

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

                return(null);
            }
        }
        /// <summary>
        /// Update a Title
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="dc"></param>
        public TitleVMDC UpdateTitle(string currentUser, string user, string appID, string overrideID, TitleDC dc)
        {
            // Create unit of work
            IUnitOfWork uow = new UnitOfWork();

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

            // Call overload with injected objects
            return(UpdateTitle(currentUser, user, appID, overrideID, dc, dataRepository, uow));
        }
        //This method is shared between create and save
        private ActionResult UpdateTitle()
        {
            // Get the updated model
            var model = GetUpdatedModel();

            // Test to see if there are any errors
            var errors = ModelState
                         .Where(x => x.Value.Errors.Count > 0)
                         .Select(x => new { x.Key, x.Value.Errors[0].ErrorMessage })
                         .ToArray();

            //Set flags false
            SetFlagsFalse(model);

            // Test to see if the model has validated correctly
            if (ModelState.IsValid)
            {
                // Create service instance
                AdminServiceClient sc = new AdminServiceClient();

                //Attempt update
                try
                {
                    // Map model to data contract
                    TitleDC TitleItem = Mapper.Map <TitleDC>(model.TitleItem);

                    TitleVMDC returnedObject = null;

                    if (null == model.TitleItem.Code || model.TitleItem.Code == Guid.Empty)
                    {
                        // Call service to create new Title item
                        returnedObject = sc.CreateTitle(CurrentUser, CurrentUser, appID, "", TitleItem);
                    }
                    else
                    {
                        // Call service to update Title item
                        returnedObject = sc.UpdateTitle(CurrentUser, CurrentUser, appID, "", TitleItem);
                    }

                    // Close service communication
                    sc.Close();

                    // Retrieve item returned by service
                    var createdTitle = returnedObject.TitleItem;

                    // Map data contract to model
                    model.TitleItem = Mapper.Map <TitleModel>(createdTitle);

                    //After creation some of the fields are display only so we need the resolved look up nmames
                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    // Set access context to Edit mode
                    model.AccessContext = TitleAccessContext.Edit;

                    // Save version of item returned by service into session
                    SessionManager.TitleServiceVersion = model.TitleItem;
                    SessionManager.CurrentTitle        = model.TitleItem;

                    // Remove the state from the model as these are being populated by the controller and the HTML helpers are being populated with
                    // the POSTED values and not the changed ones.
                    ModelState.Clear();
                    model.Message = FixedResources.MESSAGE_UPDATE_SUCCEEDED;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            return(View(model));
        }