public IVolumeObjectModel Create(IVolumeObjectModel 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(VolumeObjectMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = VolumeObjectMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it VolumeObjectsRepository.Add(newEntity); // Try to Save Changes VolumeObjectsRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public IVolumeObjectModel Update(IVolumeObjectModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = VolumeObjectsRepository.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 (VolumeObjectMapper.AreEqual(model, existingEntity)) { return(VolumeObjectMapper.MapToModel(existingEntity)); } // Map model to an existing entity VolumeObjectMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it VolumeObjectsRepository.Update(VolumeObjectMapper.MapToEntity(model)); // Try to Save Changes VolumeObjectsRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public void Verify_MapToEntity_AssignsVolumeObjectProperties() { // Arrange var mapper = new VolumeObjectMapper(); var model = VolumeObjectsMockingSetup.DoMockingSetupForVolumeObjectModel(); // Act var entity = mapper.MapToEntity(model.Object); // Assert // <None> // Related Objects Assert.Equal(model.Object.VolumeId, entity.VolumeId); Assert.Equal(model.Object.ObjectId, entity.ObjectId); // Associated Objects // <None> }
public void Verify_MapToEntity_WithExistingEntity_AssignsVolumeObjectProperties() { // Arrange var mapper = new VolumeObjectMapper(); var model = VolumeObjectsMockingSetup.DoMockingSetupForVolumeObjectModel(); // Act IVolumeObject existingEntity = new VolumeObject { Id = 1 }; mapper.MapToEntity(model.Object, ref existingEntity); // Assert // <None> // Related Objects Assert.Equal(model.Object.VolumeId, existingEntity.VolumeId); Assert.Equal(model.Object.ObjectId, existingEntity.ObjectId); // Associated Objects // <None> }