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