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 IStudioModel Create(IStudioModel 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(StudioMapper.MapToSearchModel(model)); if (results.Any()) { return(results.First()); } // Return the first that matches // Map model to a new entity var newEntity = StudioMapper.MapToEntity(model); newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime; newEntity.UpdatedDate = null; newEntity.Active = true; // Add it StudiosRepository.Add(newEntity); // Try to Save Changes StudiosRepository.SaveChanges(); // Return the new value return(Get(newEntity.Id)); }
public void Verify_MapToEntity_AssignsStudioProperties() { // Arrange var mapper = new StudioMapper(); var model = StudiosMockingSetup.DoMockingSetupForStudioModel(); // Act var entity = mapper.MapToEntity(model.Object); // Assert // <None> // Related Objects // <None> // Associated Objects //Assert.Equal(model.Object.MovieStudios?.Count, entity.MovieStudios?.Count); model.VerifyGet(x => x.MovieStudios, Times.Once); }
public void Verify_MapToEntity_WithExistingEntity_AssignsStudioProperties() { // Arrange var mapper = new StudioMapper(); var model = StudiosMockingSetup.DoMockingSetupForStudioModel(); // Act IStudio existingEntity = new Studio { Id = 1 }; mapper.MapToEntity(model.Object, ref existingEntity); // Assert // <None> // Related Objects // <None> // Associated Objects model.VerifyGet(x => x.MovieStudios, Times.Once); //Assert.Equal(model.Object.MovieStudios?.Count, existingEntity.MovieStudios?.Count); }