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