//This method is shared between create and save
        private ActionResult UpdateOrganisationType()
        {
            // 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
                    OrganisationTypeDC OrganisationTypeItem = Mapper.Map <OrganisationTypeDC>(model.OrganisationTypeItem);

                    OrganisationTypeVMDC returnedObject = null;

                    if (null == model.OrganisationTypeItem.Code || model.OrganisationTypeItem.Code == Guid.Empty)
                    {
                        // Call service to create new OrganisationType item
                        returnedObject = sc.CreateOrganisationType(CurrentUser, CurrentUser, appID, "", OrganisationTypeItem);
                    }
                    else
                    {
                        // Call service to update OrganisationType item
                        returnedObject = sc.UpdateOrganisationType(CurrentUser, CurrentUser, appID, "", OrganisationTypeItem);
                    }

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

                    // Retrieve item returned by service
                    var createdOrganisationType = returnedObject.OrganisationTypeItem;

                    // Map data contract to model
                    model.OrganisationTypeItem = Mapper.Map <OrganisationTypeModel>(createdOrganisationType);

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

                    // Save version of item returned by service into session
                    sessionManager.OrganisationTypeServiceVersion = model.OrganisationTypeItem;
                    sessionManager.CurrentOrganisationType        = model.OrganisationTypeItem;

                    // 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));
        }
Beispiel #2
0
        /// <summary>
        ///  Create a OrganisationType
        /// </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 OrganisationTypeVMDC CreateOrganisationType(string currentUser, string user, string appID, string overrideID, OrganisationTypeDC dc, IRepository <OrganisationType> 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 OrganisationType item
                    dc.Code = Guid.NewGuid();

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

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

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

                    dc = Mapper.Map <OrganisationType, OrganisationTypeDC>(destination);
                }

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

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

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

                return(null);
            }
        }
Beispiel #3
0
        /// <summary>
        /// Update a OrganisationType
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="dc"></param>
        public OrganisationTypeVMDC UpdateOrganisationType(string currentUser, string user, string appID, string overrideID, OrganisationTypeDC dc)
        {
            // Create unit of work
            IUnitOfWork uow = new UnitOfWork(currentUser);

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

            // Call overload with injected objects
            return(UpdateOrganisationType(currentUser, user, appID, overrideID, dc, dataRepository, uow));
        }
Beispiel #4
0
        /// <summary>
        /// Retrieve a OrganisationType 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 OrganisationTypeVMDC GetOrganisationType(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <OrganisationType> dataRepository
                                                        , IRepository <OrganisationTypeGroup> organisationTypeGroupRepository
                                                        , IRepository <OrganisationType> parentOrganisationTypeRepository
                                                        )

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

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

                    IEnumerable <OrganisationTypeGroup> organisationTypeGroupList  = organisationTypeGroupRepository.GetAll(x => new { x.Name });
                    IEnumerable <OrganisationType>      parentOrganisationTypeList = parentOrganisationTypeRepository.GetAll(x => new { x.Name });

                    List <OrganisationTypeGroupDC> organisationTypeGroupDestinationList  = Mapper.Map <List <OrganisationTypeGroupDC> >(organisationTypeGroupList);
                    List <OrganisationTypeDC>      parentOrganisationTypeDestinationList = Mapper.Map <List <OrganisationTypeDC> >(parentOrganisationTypeList);

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

                    returnObject.OrganisationTypeItem       = destination;
                    returnObject.OrganisationTypeGroupList  = organisationTypeGroupDestinationList;
                    returnObject.ParentOrganisationTypeList = parentOrganisationTypeDestinationList;

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

                return(null);
            }
        }
        /// <summary>
        /// Create a OrganisationType
        /// </summary>
        /// <param name="currentUser"></param>
        /// <param name="user"></param>
        /// <param name="appID"></param>
        /// <param name="overrideID"></param>
        /// <param name="dc"></param>
        public OrganisationTypeVMDC CreateOrganisationType(string currentUser, string user, string appID, string overrideID, OrganisationTypeDC dc)
        {
            // Create unit of work
            IUnitOfWork uow = new UnitOfWork(currentUser);

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

            //Create ExceptionManager
            IExceptionManager exceptionManager = new ExceptionManager();

            //Create MappingService
            IMappingService mappingService = new MappingService();


            // Call overload with injected objects
            return(CreateOrganisationType(currentUser, user, appID, overrideID, dc, dataRepository, uow, exceptionManager, mappingService));
        }
        /// <summary>
        /// Update a OrganisationType
        /// </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 OrganisationTypeVMDC UpdateOrganisationType(string currentUser, string user, string appID, string overrideID, OrganisationTypeDC dc, IRepository <OrganisationType> 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)
                {
                    // Map data contract to model
                    OrganisationType destination = mappingService.Map <OrganisationTypeDC, OrganisationType>(dc);

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

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

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

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

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

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

                return(null);
            }
        }