private static StaffDetailsLookupListsCacheObject GetStaffDetailsAndLookups()
        {
            AdminServiceClient sc           = new AdminServiceClient();
            StaffDetailsVMDC   returnObject = sc.GetStaffDetails(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            StaffDetailsLookupListsCacheObject CachedLists = new StaffDetailsLookupListsCacheObject();

            CachedLists.StaffList       = Mapper.Map <IEnumerable <StaffDC>, List <StaffModel> >(returnObject.StaffList);
            CachedLists.StaffOfficeList = Mapper.Map <IEnumerable <StaffOfficesDC>, List <StaffOfficesModel> >(returnObject.StaffOfficeList);
            return(CachedLists);
        }
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = SessionManager.StaffDetailsCode;

            StaffDetailsVM model = new StaffDetailsVM();

            // Not from staff or error
            if (String.IsNullOrEmpty(code))
            {
                //If session has lists then use them
                RepopulateListsFromCacheSession(model);

                //Assume we are in create mode as no code passed
                model.StaffDetailsItem = new StaffDetailsModel();
            }
            //if we have been passed a code then assume we are in edit situation and we need to retrieve from the database.
            else
            {
                // Create service instance
                AdminServiceClient sc = new AdminServiceClient();

                try
                {
                    // Call service to get StaffDetails item and any associated lookups
                    StaffDetailsVMDC returnedObject = sc.GetStaffDetails(CurrentUser, CurrentUser, appID, "", code);

                    // Close service communication
                    sc.Close();

                    //Get view model from service
                    model = ConvertStaffDetailsDC(returnedObject);

                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    //Store the service version
                    SessionManager.StaffDetailsServiceVersion = model.StaffDetailsItem;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            //Adds current retrieved StaffDetails to session
            SessionManager.CurrentStaffDetails = model.StaffDetailsItem;
            SetAccessContext(model);

            return(View(model));
        }
        private StaffDetailsVM ConvertStaffDetailsDC(StaffDetailsVMDC returnedObject)
        {
            StaffDetailsVM model = new StaffDetailsVM();

            // Map StaffDetails Item
            model.StaffDetailsItem = Mapper.Map <StaffDetailsDC, StaffDetailsModel>(returnedObject.StaffDetailsItem);

            // Map lookup data lists
            model.StaffList       = Mapper.Map <IEnumerable <StaffDC>, List <StaffModel> >(returnedObject.StaffList);
            model.StaffOfficeList = Mapper.Map <IEnumerable <StaffOfficesDC>, List <StaffOfficesModel> >(returnedObject.StaffOfficeList);

            return(model);
        }
        /// <summary>
        ///  Create a StaffDetails
        /// </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 StaffDetailsVMDC CreateStaffDetails(string currentUser, string user, string appID, string overrideID, StaffDetailsDC dc, IRepository <StaffDetails> 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 StaffDetails item
                    dc.Code = Guid.NewGuid();

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

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

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

                    dc = Mapper.Map <StaffDetails, StaffDetailsDC>(destination);
                }

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

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

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

                return(null);
            }
        }
        /// <summary>
        /// Retrieve a StaffDetails 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 StaffDetailsVMDC GetStaffDetails(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <StaffDetails> dataRepository
                                                , IRepository <Staff> staffRepository
                                                , IRepository <StaffOffices> staffOfficeRepository
                                                )

        {
            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)
                {
                    StaffDetailsDC 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 StaffDetails
                        StaffDetails dataEntity = dataRepository.Single(x => x.Code == codeGuid);

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

                    IEnumerable <Staff>        staffList       = staffRepository.GetAll(x => new { x.StaffNumber });
                    IEnumerable <StaffOffices> staffOfficeList = staffOfficeRepository.GetAll(x => new { x.Name });

                    List <StaffDC>        staffDestinationList       = Mapper.Map <List <StaffDC> >(staffList);
                    List <StaffOfficesDC> staffOfficeDestinationList = Mapper.Map <List <StaffOfficesDC> >(staffOfficeList);

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

                    returnObject.StaffDetailsItem = destination;
                    returnObject.StaffList        = staffDestinationList;
                    returnObject.StaffOfficeList  = staffOfficeDestinationList;

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

                return(null);
            }
        }
        //This method is shared between create and save
        private ActionResult UpdateStaffDetails()
        {
            // 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
                    StaffDetailsDC StaffDetailsItem = Mapper.Map <StaffDetailsDC>(model.StaffDetailsItem);

                    StaffDetailsVMDC returnedObject = null;

                    if (null == model.StaffDetailsItem.Code || model.StaffDetailsItem.Code == Guid.Empty)
                    {
                        // Call service to create new StaffDetails item
                        returnedObject = sc.CreateStaffDetails(CurrentUser, CurrentUser, appID, "", StaffDetailsItem);
                    }
                    else
                    {
                        // Call service to update StaffDetails item
                        returnedObject = sc.UpdateStaffDetails(CurrentUser, CurrentUser, appID, "", StaffDetailsItem);
                    }

                    // Close service communication
                    sc.Close();

                    // Retrieve item returned by service
                    var createdStaffDetails = returnedObject.StaffDetailsItem;

                    // Map data contract to model
                    model.StaffDetailsItem = Mapper.Map <StaffDetailsModel>(createdStaffDetails);

                    //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 = StaffDetailsAccessContext.Edit;

                    // Save version of item returned by service into session
                    SessionManager.StaffDetailsServiceVersion = model.StaffDetailsItem;
                    SessionManager.CurrentStaffDetails        = model.StaffDetailsItem;

                    // 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));
        }