public IConceptAliasModel Create(IConceptAliasModel model) { // Validate model BusinessWorkflowBase.ValidateIDIsNull(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Search for an Existing Record (Don't allow Duplicates var results = Search(ConceptAliasMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = ConceptAliasMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it ConceptAliasesRepository.Add(newEntity); // Try to Save Changes ConceptAliasesRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public IConceptAliasModel Update(IConceptAliasModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = ConceptAliasesRepository.Get(model.Id.Value); // Check if we would be applying identical information, if we are, just return the original // ReSharper disable once SuspiciousTypeConversion.Global if (ConceptAliasMapper.AreEqual(model, existingEntity)) { return(ConceptAliasMapper.MapToModel(existingEntity)); } // Map model to an existing entity ConceptAliasMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it ConceptAliasesRepository.Update(ConceptAliasMapper.MapToEntity(model)); // Try to Save Changes ConceptAliasesRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public virtual bool AreEqual(IConceptAliasModel model, IConceptAlias entity) { return(NameableEntityMapper.AreEqual(model, entity) // ConceptAlias Properties // <None> // Related Objects && model.ConceptId == entity.ConceptId ); }
public virtual bool AreEqual(IConceptAliasModel model, IConceptAlias entity) { return NameableEntityMapper.AreEqual(model, entity) // ConceptAlias Properties // <None> // Related Objects && model.ConceptId == entity.ConceptId ; }
public virtual void MapToEntity(IConceptAliasModel model, ref IConceptAlias entity, int currentDepth = 1) { currentDepth++; // Assign Base properties NameableEntityMapper.MapToEntity(model, ref entity); // ConceptAlias Properties // <None> // Related Objects entity.ConceptId = model.ConceptId; entity.Concept = (Concept)model.Concept?.MapToEntity(); // Associated Objects // <None> }
public virtual IConceptAlias MapToEntity(IConceptAliasModel model, int currentDepth = 1) { currentDepth++; var entity = NameableEntityMapper.MapToEntity<ConceptAlias, IConceptAliasModel>(model); // ConceptAlias Properties // <None> // Related Objects entity.ConceptId = model.ConceptId; entity.Concept = (Concept)model.Concept?.MapToEntity(); // Associated Objects // <None> // Return Entity return entity; }
public virtual IConceptAlias MapToEntity(IConceptAliasModel model, int currentDepth = 1) { currentDepth++; var entity = NameableEntityMapper.MapToEntity <ConceptAlias, IConceptAliasModel>(model); // ConceptAlias Properties // <None> // Related Objects entity.ConceptId = model.ConceptId; entity.Concept = (Concept)model.Concept?.MapToEntity(); // Associated Objects // <None> // Return Entity return(entity); }
public virtual IConceptAliasSearchModel MapToSearchModel(IConceptAliasModel model) { var searchModel = NameableEntityMapper.MapToSearchModel <IConceptAliasModel, ConceptAliasSearchModel>(model); // Search Properties searchModel.ConceptId = model.ConceptId; searchModel.ConceptCustomKey = model.Concept?.CustomKey; searchModel.ConceptApiDetailUrl = model.Concept?.ApiDetailUrl; searchModel.ConceptSiteDetailUrl = model.Concept?.SiteDetailUrl; searchModel.ConceptName = model.Concept?.Name; searchModel.ConceptShortDescription = model.Concept?.ShortDescription; searchModel.ConceptDescription = model.Concept?.Description; // Return Search Model return(searchModel); }
public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal() { // Arrange var entity = ConceptAliasesMockingSetup.DoMockingSetupForConceptAlias(1); var mockConceptAliasesRepository = ConceptAliasesMockingSetup.DoMockingSetupForRepository(); mockConceptAliasesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object); var businessWorkflow = new ConceptAliasesBusinessWorkflow(mockConceptAliasesRepository.Object, new ConceptAliasMapper()); var model = ConceptAliasesMockingSetup.DoMockingSetupForConceptAliasModel(1); IConceptAliasModel result = null; // Act try { result = businessWorkflow.Update(model.Object); } catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ } // Assert Assert.NotNull(result); Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl); Assert.Null(result.UpdatedDate); }
public IConceptAliasModel Create(IConceptAliasModel model) { // Validate model BusinessWorkflowBase.ValidateIDIsNull(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Search for an Existing Record (Don't allow Duplicates var results = Search(ConceptAliasMapper.MapToSearchModel(model)); if (results.Any()) { return results.First(); } // Return the first that matches // Map model to a new entity var newEntity = ConceptAliasMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it ConceptAliasesRepository.Add(newEntity); // Try to Save Changes ConceptAliasesRepository.SaveChanges(); // Return the new value return Get(newEntity.Id); }
public static bool AreEqual(this IConceptAliasModel model, IConceptAlias entity) { return(Mapper.AreEqual(model, entity)); }
public static IConceptAliasSearchModel MapToSearchModel(this IConceptAliasModel model) { return(Mapper.MapToSearchModel(model)); }
public static IConceptAlias MapToEntity(this IConceptAliasModel model, int currentDepth = 1) { return(Mapper.MapToEntity(model, currentDepth)); }
public IConceptAliasModel Update(IConceptAliasModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = ConceptAliasesRepository.Get(model.Id.Value); // Check if we would be applying identical information, if we are, just return the original // ReSharper disable once SuspiciousTypeConversion.Global if (ConceptAliasMapper.AreEqual(model, existingEntity)) { return ConceptAliasMapper.MapToModel(existingEntity); } // Map model to an existing entity ConceptAliasMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it ConceptAliasesRepository.Update(ConceptAliasMapper.MapToEntity(model)); // Try to Save Changes ConceptAliasesRepository.SaveChanges(); // Return the new value return Get(existingEntity.Id); }
public static void MapToEntity(this IConceptAliasModel model, ref IConceptAlias entity, int currentDepth = 1) { Mapper.MapToEntity(model, ref entity, currentDepth); }
public virtual IConceptAliasSearchModel MapToSearchModel(IConceptAliasModel model) { var searchModel = NameableEntityMapper.MapToSearchModel<IConceptAliasModel, ConceptAliasSearchModel>(model); // Search Properties searchModel.ConceptId = model.ConceptId; searchModel.ConceptCustomKey = model.Concept?.CustomKey; searchModel.ConceptApiDetailUrl = model.Concept?.ApiDetailUrl; searchModel.ConceptSiteDetailUrl = model.Concept?.SiteDetailUrl; searchModel.ConceptName = model.Concept?.Name; searchModel.ConceptShortDescription = model.Concept?.ShortDescription; searchModel.ConceptDescription = model.Concept?.Description; // Return Search Model return searchModel; }