private IncidentUpdateEventLookupListsCacheObject GetIncidentUpdateEventAndLookups()
        {
            UcbServiceClient        sc           = new UcbServiceClient();
            IncidentUpdateEventVMDC returnObject = sc.GetIncidentUpdateEvent(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            IncidentUpdateEventLookupListsCacheObject CachedLists = new IncidentUpdateEventLookupListsCacheObject();

            CachedLists.IncidentList = Mapper.Map <IEnumerable <IncidentDC>, List <IncidentModel> >(returnObject.IncidentList);
            return(CachedLists);
        }
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = sessionManager.IncidentUpdateEventCode;

            IncidentUpdateEventVM model = new IncidentUpdateEventVM();

            // 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.IncidentUpdateEventItem = new IncidentUpdateEventModel();
            }
            //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
                IUcbService sc = UcbService;

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

                    // Close service communication
                    ((ICommunicationObject)sc).Close();

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

                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    //Store the service version
                    sessionManager.IncidentUpdateEventServiceVersion = model.IncidentUpdateEventItem;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, (ICommunicationObject)sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            //Adds current retrieved IncidentUpdateEvent to session
            sessionManager.CurrentIncidentUpdateEvent = model.IncidentUpdateEventItem;
            SetAccessContext(model);

            return(View(model));
        }
        private IncidentUpdateEventVM ConvertIncidentUpdateEventDC(IncidentUpdateEventVMDC returnedObject)
        {
            IncidentUpdateEventVM model = new IncidentUpdateEventVM();

            // Map IncidentUpdateEvent Item
            model.IncidentUpdateEventItem = Mapper.Map <IncidentUpdateEventDC, IncidentUpdateEventModel>(returnedObject.IncidentUpdateEventItem);

            // Map lookup data lists
            model.IncidentList = Mapper.Map <IEnumerable <IncidentDC>, List <IncidentModel> >(returnedObject.IncidentList);

            return(model);
        }
        //This method is shared between create and save
        private ActionResult UpdateIncidentUpdateEvent()
        {
            // 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
                IUcbService sc = UcbService;

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

                    IncidentUpdateEventVMDC returnedObject = null;

                    if (null == model.IncidentUpdateEventItem.Code || model.IncidentUpdateEventItem.Code == Guid.Empty)
                    {
                        // Call service to create new IncidentUpdateEvent item
                        returnedObject = sc.CreateIncidentUpdateEvent(CurrentUser, CurrentUser, appID, "", IncidentUpdateEventItem);
                    }
                    else
                    {
                        // Call service to update IncidentUpdateEvent item
                        returnedObject = sc.UpdateIncidentUpdateEvent(CurrentUser, CurrentUser, appID, "", IncidentUpdateEventItem);
                    }

                    // Close service communication
                    ((ICommunicationObject)sc).Close();

                    // Retrieve item returned by service
                    var createdIncidentUpdateEvent = returnedObject.IncidentUpdateEventItem;

                    // Map data contract to model
                    model.IncidentUpdateEventItem = Mapper.Map <IncidentUpdateEventModel>(createdIncidentUpdateEvent);

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

                    // Save version of item returned by service into session
                    sessionManager.IncidentUpdateEventServiceVersion = model.IncidentUpdateEventItem;
                    sessionManager.CurrentIncidentUpdateEvent        = model.IncidentUpdateEventItem;

                    // 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 = Resources.MESSAGE_UPDATE_SUCCEEDED;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, (ICommunicationObject)sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            return(View(model));
        }
示例#5
0
        /// <summary>
        ///  Create a IncidentUpdateEvent
        /// </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 IncidentUpdateEventVMDC CreateIncidentUpdateEvent(string currentUser, string user, string appID, string overrideID, IncidentUpdateEventDC dc, IRepository <IncidentUpdateEvent> 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 == dc)
                {
                    throw new ArgumentOutOfRangeException("dc");
                }
                if (null == dataRepository)
                {
                    throw new ArgumentOutOfRangeException("dataRepository");
                }
                if (null == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }
                if (null == exceptionManager)
                {
                    throw new ArgumentOutOfRangeException("exceptionManager");
                }
                if (null == mappingService)
                {
                    throw new ArgumentOutOfRangeException("mappingService");
                }

                #endregion

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

                    // Map data contract to model
                    IncidentUpdateEvent destination = mappingService.Map <IncidentUpdateEventDC, IncidentUpdateEvent>(dc);

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

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

                    // Map model back to data contract to return new row id.
                    dc = mappingService.Map <IncidentUpdateEvent, IncidentUpdateEventDC>(destination);
                }

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

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

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

                return(null);
            }
        }
示例#6
0
        /// <summary>
        /// Retrieve a IncidentUpdateEvent 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 IncidentUpdateEventVMDC GetIncidentUpdateEvent(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <IncidentUpdateEvent> dataRepository
                                                              , IRepository <Incident> incidentRepository
                                                              , 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 == uow)
                {
                    throw new ArgumentOutOfRangeException("uow");
                }
                if (null == exceptionManager)
                {
                    throw new ArgumentOutOfRangeException("exceptionManager");
                }
                if (null == mappingService)
                {
                    throw new ArgumentOutOfRangeException("mappingService");
                }

                #endregion

                using (uow)
                {
                    IncidentUpdateEventDC 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 IncidentUpdateEvent
                        IncidentUpdateEvent dataEntity = dataRepository.Single(x => x.Code == codeGuid);

                        // Convert to data contract for passing through service interface
                        destination = mappingService.Map <IncidentUpdateEvent, IncidentUpdateEventDC>(dataEntity);
                    }

                    IEnumerable <Incident> incidentList = incidentRepository.GetAll(x => new { x.IncidentID });

                    List <IncidentDC> incidentDestinationList = mappingService.Map <List <IncidentDC> >(incidentList);

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

                    returnObject.IncidentUpdateEventItem = destination;
                    returnObject.IncidentList            = incidentDestinationList;

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

                return(null);
            }
        }