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