private StandardReportLookupListsCacheObject GetStandardReportAndLookups()
        {
            UcbServiceClient   sc           = new UcbServiceClient();
            StandardReportVMDC returnObject = sc.GetStandardReport(HttpContext.Current.User.Identity.Name, HttpContext.Current.User.Identity.Name, "FrameworkAdmin", "", null);

            StandardReportLookupListsCacheObject CachedLists = new StandardReportLookupListsCacheObject();

            CachedLists.ReportCategoryList = Mapper.Map <IEnumerable <ReportCategoryDC>, List <ReportCategoryModel> >(returnObject.ReportCategoryList);
            return(CachedLists);
        }
        public ActionResult Edit()
        {
            // Retrieve ID from session
            string code = sessionManager.StandardReportCode;

            StandardReportVM model = new StandardReportVM();

            // 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.StandardReportItem = new StandardReportModel();
            }
            //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 StandardReport item and any associated lookups
                    StandardReportVMDC returnedObject = sc.GetStandardReport(CurrentUser, CurrentUser, appID, "", code);

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

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

                    ResolveFieldCodesToFieldNamesUsingLists(model);

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

                    return(View(model));
                }
            }

            //Adds current retrieved StandardReport to session
            sessionManager.CurrentStandardReport = model.StandardReportItem;
            SetAccessContext(model);

            return(View(model));
        }
        private StandardReportVM ConvertStandardReportDC(StandardReportVMDC returnedObject)
        {
            StandardReportVM model = new StandardReportVM();

            // Map StandardReport Item
            model.StandardReportItem = Mapper.Map <StandardReportDC, StandardReportModel>(returnedObject.StandardReportItem);

            // Map lookup data lists
            model.ReportCategoryList = Mapper.Map <IEnumerable <ReportCategoryDC>, List <ReportCategoryModel> >(returnedObject.ReportCategoryList);

            return(model);
        }
        public ActionResult MIReport()
        {
            sessionManager.PageFrom = "MIMenu";
            string             ReportCode = Request.QueryString["ReportID"];
            UcbServiceClient   sc         = new UcbServiceClient();
            StandardReportVMDC report     = null;

            try
            {
                report = sc.GetStandardReport(CurrentUser, CurrentUser, "Ucb", "", ReportCode);
                sc.Close();
            }
            catch (Exception e)
            {
                ExceptionManager.HandleException(e, sc);
            }
            sessionManager.CurrentStandardReport = Mapper.Map <StandardReportModel>(report.StandardReportItem);
            //Report Name now passed in session
            sessionManager.RequestedReport = report.StandardReportItem.ReportName;
            return(Redirect("~/Reports/Reports.aspx"));
        }
        //This method is shared between create and save
        private ActionResult UpdateStandardReport()
        {
            // 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
                    StandardReportDC StandardReportItem = Mapper.Map <StandardReportDC>(model.StandardReportItem);

                    StandardReportVMDC returnedObject = null;

                    if (null == model.StandardReportItem.Code || model.StandardReportItem.Code == Guid.Empty)
                    {
                        // Call service to create new StandardReport item
                        returnedObject = sc.CreateStandardReport(CurrentUser, CurrentUser, appID, "", StandardReportItem);
                    }
                    else
                    {
                        // Call service to update StandardReport item
                        returnedObject = sc.UpdateStandardReport(CurrentUser, CurrentUser, appID, "", StandardReportItem);
                    }

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

                    // Retrieve item returned by service
                    var createdStandardReport = returnedObject.StandardReportItem;

                    // Map data contract to model
                    model.StandardReportItem = Mapper.Map <StandardReportModel>(createdStandardReport);

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

                    // Save version of item returned by service into session
                    sessionManager.StandardReportServiceVersion = model.StandardReportItem;
                    sessionManager.CurrentStandardReport        = model.StandardReportItem;

                    // 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));
        }
        /// <summary>
        ///  Create a StandardReport
        /// </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 StandardReportVMDC CreateStandardReport(string currentUser, string user, string appID, string overrideID, StandardReportDC dc, IRepository <StandardReport> 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 StandardReport item
                    dc.Code = Guid.NewGuid();

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

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

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

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

                return(null);
            }
        }
        /// <summary>
        /// Retrieve a StandardReport 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 StandardReportVMDC GetStandardReport(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <StandardReport> dataRepository
                                                    , IRepository <ReportCategory> reportCategoryRepository
                                                    , 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)
                {
                    StandardReportDC 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 StandardReport
                        StandardReport dataEntity = dataRepository.Single(x => x.Code == codeGuid);

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

                    IEnumerable <ReportCategory> reportCategoryList = reportCategoryRepository.GetAll(x => new { x.Description });

                    List <ReportCategoryDC> reportCategoryDestinationList = mappingService.Map <List <ReportCategoryDC> >(reportCategoryList);

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

                    returnObject.StandardReportItem = destination;
                    returnObject.ReportCategoryList = reportCategoryDestinationList;

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

                return(null);
            }
        }