예제 #1
0
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = sessionManager.StaffOrganisationCode;

            StaffOrganisationVM model = new StaffOrganisationVM();

            // 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.StaffOrganisationItem = new StaffOrganisationModel();
            }
            //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 StaffOrganisation item and any associated lookups
                    StaffOrganisationVMDC returnedObject = sc.GetStaffOrganisation(CurrentUser, CurrentUser, appID, "", code);

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

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

                    ResolveFieldCodesToFieldNamesUsingLists(model);

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

                    return(View(model));
                }
            }

            //Adds current retrieved StaffOrganisation to session
            sessionManager.CurrentStaffOrganisation = model.StaffOrganisationItem;
            SetAccessContext(model);

            return(View(model));
        }
예제 #2
0
        private StaffOrganisationLookupListsCacheObject GetStaffOrganisationAndLookups()
        {
            UcbServiceClient      sc           = new UcbServiceClient();
            StaffOrganisationVMDC returnObject = sc.GetStaffOrganisation(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            StaffOrganisationLookupListsCacheObject CachedLists = new StaffOrganisationLookupListsCacheObject();

            CachedLists.StaffList        = Mapper.Map <IEnumerable <StaffDC>, List <StaffModel> >(returnObject.StaffList);
            CachedLists.OrganisationList = Mapper.Map <IEnumerable <OrganisationDC>, List <OrganisationModel> >(returnObject.OrganisationList);
            CachedLists.ApplicationList  = Mapper.Map <IEnumerable <ApplicationDC>, List <ApplicationModel> >(returnObject.ApplicationList);
            return(CachedLists);
        }
예제 #3
0
        private StaffOrganisationVM ConvertStaffOrganisationDC(StaffOrganisationVMDC returnedObject)
        {
            StaffOrganisationVM model = new StaffOrganisationVM();

            // Map StaffOrganisation Item
            model.StaffOrganisationItem = Mapper.Map <StaffOrganisationDC, StaffOrganisationModel>(returnedObject.StaffOrganisationItem);

            // Map lookup data lists
            model.StaffList        = Mapper.Map <IEnumerable <StaffDC>, List <StaffModel> >(returnedObject.StaffList);
            model.OrganisationList = Mapper.Map <IEnumerable <OrganisationDC>, List <OrganisationModel> >(returnedObject.OrganisationList);
            model.ApplicationList  = Mapper.Map <IEnumerable <ApplicationDC>, List <ApplicationModel> >(returnedObject.ApplicationList);

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

                    // Map data contract to model
                    StaffOrganisation destination = mappingService.Map <StaffOrganisationDC, StaffOrganisation>(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 <StaffOrganisation, StaffOrganisationDC>(destination);
                }

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

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

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

                return(null);
            }
        }
        /// <summary>
        /// Retrieve a StaffOrganisation 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 StaffOrganisationVMDC GetStaffOrganisation(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <StaffOrganisation> dataRepository
                                                          , IRepository <Staff> staffRepository
                                                          , IRepository <Organisation> organisationRepository
                                                          , IRepository <Application> applicationRepository
                                                          , 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)
                {
                    StaffOrganisationDC 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 StaffOrganisation
                        StaffOrganisation dataEntity = dataRepository.Single(x => x.Code == codeGuid);

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

                    IEnumerable <Staff>        staffList        = staffRepository.GetAll(x => new { x.StaffNumber });
                    IEnumerable <Organisation> organisationList = organisationRepository.GetAll(x => x.Name);
                    IEnumerable <Application>  applicationList  = applicationRepository.GetAll(x => new { x.Description });

                    List <StaffDC>        staffDestinationList        = mappingService.Map <List <StaffDC> >(staffList);
                    List <OrganisationDC> organisationDestinationList = mappingService.Map <List <OrganisationDC> >(organisationList);
                    List <ApplicationDC>  applicationDestinationList  = mappingService.Map <List <ApplicationDC> >(applicationList);

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

                    returnObject.StaffOrganisationItem = destination;
                    returnObject.StaffList             = staffDestinationList;
                    returnObject.OrganisationList      = organisationDestinationList;
                    returnObject.ApplicationList       = applicationDestinationList;

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

                return(null);
            }
        }
예제 #6
0
        //This method is shared between create and save
        private ActionResult UpdateStaffOrganisation()
        {
            // 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
                    StaffOrganisationDC StaffOrganisationItem = Mapper.Map <StaffOrganisationDC>(model.StaffOrganisationItem);

                    StaffOrganisationVMDC returnedObject = null;

                    if (null == model.StaffOrganisationItem.Code || model.StaffOrganisationItem.Code == Guid.Empty)
                    {
                        // Call service to create new StaffOrganisation item
                        returnedObject = sc.CreateStaffOrganisation(CurrentUser, CurrentUser, appID, "", StaffOrganisationItem);
                    }
                    else
                    {
                        // Call service to update StaffOrganisation item
                        returnedObject = sc.UpdateStaffOrganisation(CurrentUser, CurrentUser, appID, "", StaffOrganisationItem);
                    }

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

                    // Retrieve item returned by service
                    var createdStaffOrganisation = returnedObject.StaffOrganisationItem;

                    // Map data contract to model
                    model.StaffOrganisationItem = Mapper.Map <StaffOrganisationModel>(createdStaffOrganisation);

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

                    // Save version of item returned by service into session
                    sessionManager.StaffOrganisationServiceVersion = model.StaffOrganisationItem;
                    sessionManager.CurrentStaffOrganisation        = model.StaffOrganisationItem;

                    // 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));
        }
예제 #7
0
        /// <summary>
        /// Update a StaffOrganisation
        /// </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 StaffOrganisationVMDC UpdateStaffOrganisation(string currentUser, string user, string appID, string overrideID, StaffOrganisationDC dc, IRepository <StaffOrganisation> 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)
                {
                    // Map data contract to model
                    StaffOrganisation destination = Mapper.Map <StaffOrganisationDC, StaffOrganisation>(dc);

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

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

                    dc = Mapper.Map <StaffOrganisation, StaffOrganisationDC>(destination);
                }

                // Create new data contract to return
                StaffOrganisationVMDC returnObject = new StaffOrganisationVMDC();

                // Add new item to datacontract
                returnObject.StaffOrganisationItem = dc;

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

                return(null);
            }
        }