private static HolidayLookupListsCacheObject GetHolidayAndLookups()
        {
            AdminServiceClient sc           = new AdminServiceClient();
            HolidayVMDC        returnObject = sc.GetHoliday(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            HolidayLookupListsCacheObject CachedLists = new HolidayLookupListsCacheObject();

            return(CachedLists);
        }
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = SessionManager.HolidayCode;

            HolidayVM model = new HolidayVM();

            // 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.HolidayItem = new HolidayModel()
                {
                    IsActive = true
                };
            }
            //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 Holiday item and any associated lookups
                    HolidayVMDC returnedObject = sc.GetHoliday(CurrentUser, CurrentUser, appID, "", code);

                    // Close service communication
                    sc.Close();

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

                    ResolveFieldCodesToFieldNamesUsingLists(model);

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

                    return(View(model));
                }
            }

            //Adds current retrieved Holiday to session
            SessionManager.CurrentHoliday = model.HolidayItem;
            SetAccessContext(model);

            return(View(model));
        }
        private HolidayVM ConvertHolidayDC(HolidayVMDC returnedObject)
        {
            HolidayVM model = new HolidayVM();

            // Map Holiday Item
            model.HolidayItem = Mapper.Map <HolidayDC, HolidayModel>(returnedObject.HolidayItem);

            // Map lookup data lists

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

                    HolidayVMDC returnedObject = null;

                    if (null == model.HolidayItem.Code || model.HolidayItem.Code == Guid.Empty)
                    {
                        // Call service to create new Holiday item
                        returnedObject = sc.CreateHoliday(CurrentUser, CurrentUser, appID, "", HolidayItem);
                    }
                    else
                    {
                        // Call service to update Holiday item
                        returnedObject = sc.UpdateHoliday(CurrentUser, CurrentUser, appID, "", HolidayItem);
                    }

                    // Close service communication
                    sc.Close();

                    // Retrieve item returned by service
                    var createdHoliday = returnedObject.HolidayItem;

                    // Map data contract to model
                    model.HolidayItem = Mapper.Map <HolidayModel>(createdHoliday);

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

                    // Save version of item returned by service into session
                    SessionManager.HolidayServiceVersion = model.HolidayItem;
                    SessionManager.CurrentHoliday        = model.HolidayItem;

                    // 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));
        }
Esempio n. 5
0
        /// <summary>
        ///  Create a Holiday
        /// </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 HolidayVMDC CreateHoliday(string currentUser, string user, string appID, string overrideID, HolidayDC dc, IRepository <Holiday> 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 Holiday item
                    dc.Code = Guid.NewGuid();

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

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

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

                    dc = Mapper.Map <Holiday, HolidayDC>(destination);
                }

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

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

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

                return(null);
            }
        }
Esempio n. 6
0
        /// <summary>
        /// Retrieve a Holiday 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 HolidayVMDC GetHoliday(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <Holiday> 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)
                {
                    HolidayDC 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 Holiday
                        Holiday dataEntity = dataRepository.Single(x => x.Code == codeGuid);

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



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

                    returnObject.HolidayItem = destination;

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

                return(null);
            }
        }