private LinkedCustomerLookupListsCacheObject GetLinkedCustomerAndLookups()
        {
            UcbServiceClient   sc           = new UcbServiceClient();
            LinkedCustomerVMDC returnObject = sc.GetLinkedCustomer(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            LinkedCustomerLookupListsCacheObject CachedLists = new LinkedCustomerLookupListsCacheObject();

            CachedLists.Customer1List = Mapper.Map <IEnumerable <CustomerDC>, List <CustomerModel> >(returnObject.Customer1List);
            CachedLists.Customer2List = Mapper.Map <IEnumerable <CustomerDC>, List <CustomerModel> >(returnObject.Customer2List);
            return(CachedLists);
        }
Beispiel #2
0
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = sessionManager.LinkedCustomerCode;

            LinkedCustomerVM model = new LinkedCustomerVM();

            // 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.LinkedCustomerItem = new LinkedCustomerModel();
            }
            //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 LinkedCustomer item and any associated lookups
                    LinkedCustomerVMDC returnedObject = sc.GetLinkedCustomer(CurrentUser, CurrentUser, appID, "", code);

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

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

                    ResolveFieldCodesToFieldNamesUsingLists(model);

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

                    return(View(model));
                }
            }

            //Adds current retrieved LinkedCustomer to session
            sessionManager.CurrentLinkedCustomer = model.LinkedCustomerItem;
            SetAccessContext(model);

            return(View(model));
        }
Beispiel #3
0
        private LinkedCustomerVM ConvertLinkedCustomerDC(LinkedCustomerVMDC returnedObject)
        {
            LinkedCustomerVM model = new LinkedCustomerVM();

            // Map LinkedCustomer Item
            model.LinkedCustomerItem = Mapper.Map <LinkedCustomerDC, LinkedCustomerModel>(returnedObject.LinkedCustomerItem);

            // Map lookup data lists
            model.Customer1List = Mapper.Map <IEnumerable <CustomerDC>, List <CustomerModel> >(returnedObject.Customer1List);
            model.Customer2List = Mapper.Map <IEnumerable <CustomerDC>, List <CustomerModel> >(returnedObject.Customer2List);

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

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

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

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

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

                return(null);
            }
        }
        /// <summary>
        /// Retrieve a LinkedCustomer 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 LinkedCustomerVMDC GetLinkedCustomer(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <LinkedCustomer> dataRepository
                                                    , IRepository <Customer> customer1Repository
                                                    , IRepository <Customer> customer2Repository
                                                    , 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)
                {
                    LinkedCustomerDC 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 LinkedCustomer
                        LinkedCustomer dataEntity = dataRepository.Single(x => x.Code == codeGuid);

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

                    IEnumerable <Customer> customer1List = customer1Repository.GetAll(x => new { x.Title });
                    IEnumerable <Customer> customer2List = customer2Repository.GetAll(x => new { x.Title });

                    List <CustomerDC> customer1DestinationList = mappingService.Map <List <CustomerDC> >(customer1List);
                    List <CustomerDC> customer2DestinationList = mappingService.Map <List <CustomerDC> >(customer2List);

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

                    returnObject.LinkedCustomerItem = destination;
                    returnObject.Customer1List      = customer1DestinationList;
                    returnObject.Customer2List      = customer2DestinationList;

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

                return(null);
            }
        }
Beispiel #6
0
        //This method is shared between create and save
        private ActionResult UpdateLinkedCustomer()
        {
            // 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
                    LinkedCustomerDC LinkedCustomerItem = Mapper.Map <LinkedCustomerDC>(model.LinkedCustomerItem);

                    LinkedCustomerVMDC returnedObject = null;

                    if (null == model.LinkedCustomerItem.Code || model.LinkedCustomerItem.Code == Guid.Empty)
                    {
                        // Call service to create new LinkedCustomer item
                        returnedObject = sc.CreateLinkedCustomer(CurrentUser, CurrentUser, appID, "", LinkedCustomerItem);
                    }
                    else
                    {
                        // Call service to update LinkedCustomer item
                        returnedObject = sc.UpdateLinkedCustomer(CurrentUser, CurrentUser, appID, "", LinkedCustomerItem);
                    }

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

                    // Retrieve item returned by service
                    var createdLinkedCustomer = returnedObject.LinkedCustomerItem;

                    // Map data contract to model
                    model.LinkedCustomerItem = Mapper.Map <LinkedCustomerModel>(createdLinkedCustomer);

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

                    // Save version of item returned by service into session
                    sessionManager.LinkedCustomerServiceVersion = model.LinkedCustomerItem;
                    sessionManager.CurrentLinkedCustomer        = model.LinkedCustomerItem;

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