public IStoryArcModel Update(IStoryArcModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = StoryArcsRepository.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 (StoryArcMapper.AreEqual(model, existingEntity)) { return(StoryArcMapper.MapToModel(existingEntity)); } // Map model to an existing entity StoryArcMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it StoryArcsRepository.Update(StoryArcMapper.MapToEntity(model)); // Try to Save Changes StoryArcsRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public void Verify_AreEqual_WithDifferentObjects_ReturnsFalse() { // Arrange var mapper = new StoryArcMapper(); var model = StoryArcsMockingSetup.DoMockingSetupForStoryArcModel(1); var entity = StoryArcsMockingSetup.DoMockingSetupForStoryArc(2); // Act var result = mapper.AreEqual(model.Object, entity.Object); // Assert Assert.False(result); }
public void Verify_AreEqual_WithEqualObjects_ReturnsTrue() { // Arrange var mapper = new StoryArcMapper(); var model = StoryArcsMockingSetup.DoMockingSetupForStoryArcModel(1); var entity = StoryArcsMockingSetup.DoMockingSetupForStoryArc(1); // Act var result = mapper.AreEqual(model.Object, entity.Object); // Assert Assert.True(result); }