public IObjectStoryArcModel Update(IObjectStoryArcModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = ObjectStoryArcsRepository.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 (ObjectStoryArcMapper.AreEqual(model, existingEntity)) { return(ObjectStoryArcMapper.MapToModel(existingEntity)); } // Map model to an existing entity ObjectStoryArcMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it ObjectStoryArcsRepository.Update(ObjectStoryArcMapper.MapToEntity(model)); // Try to Save Changes ObjectStoryArcsRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public void Verify_MapToModel_AssignsObjectStoryArcProperties() { // Arrange var mapper = new ObjectStoryArcMapper(); var entity = ObjectStoryArcsMockingSetup.DoMockingSetupForObjectStoryArc(); // Act var model = mapper.MapToModel(entity.Object); // Assert // <None> // Related Objects Assert.Equal(entity.Object.ObjectId, model.ObjectId); Assert.Equal(entity.Object.StoryArcId, model.StoryArcId); // Associated Objects // <None> }
public IObjectStoryArcModel Get(string key) { BusinessWorkflowBase.ValidateRequiredKey(key); return(ObjectStoryArcMapper.MapToModel(ObjectStoryArcsRepository.Get(key))); }
public IObjectStoryArcModel Get(int id) { BusinessWorkflowBase.ValidateRequiredID(id); return(ObjectStoryArcMapper.MapToModel(ObjectStoryArcsRepository.Get(id))); }