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