/// <summary> /// Update a Organisation /// </summary> /// <param name="currentUser"></param> /// <param name="user"></param> /// <param name="appID"></param> /// <param name="overrideID"></param> /// <param name="dc"></param> public OrganisationVMDC UpdateOrganisation(string currentUser, string user, string appID, string overrideID, OrganisationDC dc) { // Create unit of work IUnitOfWork uow = new UnitOfWork(currentUser); // Create repository IRepository <Organisation> dataRepository = new Repository <Organisation>(uow.ObjectContext, currentUser, user, appID, overrideID); // Call overload with injected objects return(UpdateOrganisation(currentUser, user, appID, overrideID, dc, dataRepository, uow)); }
/// <summary> /// Create a Organisation /// </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 OrganisationVMDC CreateOrganisation(string currentUser, string user, string appID, string overrideID, OrganisationDC dc, IRepository <Organisation> 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 Organisation item dc.Code = Guid.NewGuid(); // Map data contract to model Organisation destination = Mapper.Map <OrganisationDC, Organisation>(dc); // Add the new item dataRepository.Add(destination); // Commit unit of work uow.Commit(); dc = Mapper.Map <Organisation, OrganisationDC>(destination); } // Create aggregate data contract OrganisationVMDC returnObject = new OrganisationVMDC(); // Add new item to aggregate returnObject.OrganisationItem = dc; return(returnObject); } catch (Exception e) { //Prevent exception from propogating across the service interface ExceptionManager.ShieldException(e); return(null); } }
/// <summary> /// Retrieve a Organisation 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 OrganisationVMDC GetOrganisation(string currentUser, string user, string appID, string overrideID, string code, IUnitOfWork uow, IRepository <Organisation> dataRepository , IRepository <OrganisationType> organisationTypeRepository ) { 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) { OrganisationDC 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 Organisation Organisation dataEntity = dataRepository.Single(x => x.Code == codeGuid); // Convert to data contract for passing through service interface destination = Mapper.Map <Organisation, OrganisationDC>(dataEntity); } IEnumerable <OrganisationType> organisationTypeList = organisationTypeRepository.GetAll(x => new { x.Name }); List <OrganisationTypeDC> organisationTypeDestinationList = Mapper.Map <List <OrganisationTypeDC> >(organisationTypeList); // Create aggregate contract OrganisationVMDC returnObject = new OrganisationVMDC(); returnObject.OrganisationItem = destination; returnObject.OrganisationTypeList = organisationTypeDestinationList; return(returnObject); } } catch (Exception e) { //Prevent exception from propogating across the service interface ExceptionManager.ShieldException(e); return(null); } }
//This method is shared between create and save private ActionResult UpdateOrganisation() { // 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 OrganisationDC OrganisationItem = Mapper.Map <OrganisationDC>(model.OrganisationItem); OrganisationVMDC returnedObject = null; if (null == model.OrganisationItem.Code || model.OrganisationItem.Code == Guid.Empty) { // Call service to create new Organisation item returnedObject = sc.CreateOrganisation(CurrentUser, CurrentUser, appID, "", OrganisationItem); } else { // Call service to update Organisation item returnedObject = sc.UpdateOrganisation(CurrentUser, CurrentUser, appID, "", OrganisationItem); } // Close service communication ((ICommunicationObject)sc).Close(); // Retrieve item returned by service var createdOrganisation = returnedObject.OrganisationItem; // Map data contract to model model.OrganisationItem = Mapper.Map <OrganisationModel>(createdOrganisation); //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 = OrganisationAccessContext.Edit; // Save version of item returned by service into session sessionManager.OrganisationServiceVersion = model.OrganisationItem; sessionManager.CurrentOrganisation = model.OrganisationItem; // 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)); }
//This method is shared between create and save private ActionResult UpdateOrganisation() { // Get the updated model var model = GetUpdatedModelOrg(); // 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 AdminServiceClient sc = new AdminServiceClient(); //Attempt update try { //FindParentOrganisation var SelectedOrganisationTypeCode = model.OrganisationItem.OrganisationTypeCode; var SelectedOrganisationTypeParentLevelNumber = model.AllTypesForApplication.Single(x => x.Code == SelectedOrganisationTypeCode).LevelNumber - 2; //OrganisationByTypeVM ParentOrgsList = SessionManager.AllOrganisationsForApplicationByTypesList[SelectedOrganisationTypeParentLevelNumber]; //var ParentOrganisation = ParentOrgsList.OrganisationList.Single(x => x.Code == model.ParentOrganisationCode); // Map model to data contract OrganisationDC OrganisationItem = Mapper.Map <OrganisationDC>(model.OrganisationItem); ApplicationOrganisationAdminVMDC returnedObject = null; if (null == model.OrganisationItem.Code || model.OrganisationItem.Code == Guid.Empty) { // Call service to create new Organisation item returnedObject = sc.CreateOrganisationForApplication(CurrentUser, CurrentUser, appID, "", OrganisationItem, model.ParentOrganisationCode, Guid.Parse(SessionManager.ApplicationCode)); } else { // Call service to update Organisation item returnedObject = sc.UpdateOrganisationForApplication(CurrentUser, CurrentUser, appID, "", OrganisationItem, model.ParentOrganisationCode, Guid.Parse(SessionManager.ApplicationCode)); } // Close service communication sc.Close(); //not saved because organisation already existed if (!string.IsNullOrEmpty(returnedObject.Message)) { if (returnedObject.Message.Contains("Update failed")) { // Set access context to Edit mode model.AccessContext = ApplicationOrganisationAccessContext.Edit; model.Message = FixedResources.MESSAGE_UPDATEFAILED_DUE_TO_ORGANISATIONALREADY_EXISTS; } else { // Set access context to Create mode model.AccessContext = ApplicationOrganisationAccessContext.Create; model.Message = FixedResources.MESSAGE_CREATEFAILED_DUE_TO_ORGANISATIONALREADY_EXISTS; } } else { //Get view model from service model = ConvertApplicationOrganisationDC(returnedObject); SessionManager.RootOrganisation = model.RootNodeOrganisation; SessionManager.OrganisationServiceVersion = model.OrganisationItem.Clone(); SessionManager.MaximumHopsToChildOrganisation = model.MaximumHopsToChildOrganisation; // Save version of item returned by service into session SessionManager.OrganisationServiceVersion = model.OrganisationItem.Clone(); SessionManager.CurrentOrganisation = model.OrganisationItem; // Set access context to Edit mode model.AccessContext = ApplicationOrganisationAccessContext.Edit; ResolveFieldCodesToFieldNamesUsingLists(model); AddListsToSession(model); //Store the service version SessionManager.OrganisationServiceVersion = model.OrganisationItem; // 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 = FixedResources.MESSAGE_UPDATE_SUCCEEDED; } } catch (Exception e) { // Handle the exception string message = ExceptionManager.HandleException(e, sc); model.Message = message; return(View(model)); } } return(View(model)); }
/// <summary> /// Create a Organisation /// </summary> /// <param name="currentUser"></param> /// <param name="user"></param> /// <param name="appID"></param> /// <param name="overrideID"></param> /// <param name="dc"></param> public OrganisationVMDC CreateOrganisation(string currentUser, string user, string appID, string overrideID, OrganisationDC dc) { // Create unit of work IUnitOfWork uow = new UnitOfWork(currentUser); // Create repository Repository <Organisation> dataRepository = new Repository <Organisation>(uow.ObjectContext, currentUser, user, appID, overrideID); //Create ExceptionManager IExceptionManager exceptionManager = new ExceptionManager(); //Create MappingService IMappingService mappingService = new MappingService(); // Call overload with injected objects return(CreateOrganisation(currentUser, user, appID, overrideID, dc, dataRepository, uow, exceptionManager, mappingService)); }
/// <summary> /// Update a Organisation /// </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 OrganisationVMDC UpdateOrganisation(string currentUser, string user, string appID, string overrideID, OrganisationDC dc, IRepository <Organisation> 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 Organisation destination = mappingService.Map <OrganisationDC, Organisation>(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 <Organisation, OrganisationDC>(destination); } // Create new data contract to return OrganisationVMDC returnObject = new OrganisationVMDC(); // Add new item to datacontract returnObject.OrganisationItem = dc; // Commit unit of work return(returnObject); } catch (Exception e) { //Prevent exception from propogating across the service interface exceptionManager.ShieldException(e); return(null); } }