public IEpisodePersonModel Update(IEpisodePersonModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = EpisodePeopleRepository.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 (EpisodePersonMapper.AreEqual(model, existingEntity))
            {
                return(EpisodePersonMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            EpisodePersonMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            EpisodePeopleRepository.Update(EpisodePersonMapper.MapToEntity(model));
            // Try to Save Changes
            EpisodePeopleRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
        public IEpisodePersonModel Create(IEpisodePersonModel 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(EpisodePersonMapper.MapToSearchModel(model));

            if (results.Any())
            {
                return(results.First());
            }                                              // Return the first that matches
            // Map model to a new entity
            var newEntity = EpisodePersonMapper.MapToEntity(model);

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            EpisodePeopleRepository.Add(newEntity);
            // Try to Save Changes
            EpisodePeopleRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public void Verify_MapToEntity_AssignsEpisodePersonProperties()
 {
     // Arrange
     var mapper = new EpisodePersonMapper();
     var model = EpisodePeopleMockingSetup.DoMockingSetupForEpisodePersonModel();
     // Act
     var entity = mapper.MapToEntity(model.Object);
     // Assert
     // <None>
     // Related Objects
     Assert.Equal(model.Object.EpisodeId, entity.EpisodeId);
     Assert.Equal(model.Object.PersonId, entity.PersonId);
     // Associated Objects
     // <None>
 }
コード例 #4
0
        public void Verify_MapToEntity_AssignsEpisodePersonProperties()
        {
            // Arrange
            var mapper = new EpisodePersonMapper();
            var model  = EpisodePeopleMockingSetup.DoMockingSetupForEpisodePersonModel();
            // Act
            var entity = mapper.MapToEntity(model.Object);

            // Assert
            // <None>
            // Related Objects
            Assert.Equal(model.Object.EpisodeId, entity.EpisodeId);
            Assert.Equal(model.Object.PersonId, entity.PersonId);
            // Associated Objects
            // <None>
        }