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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            EpisodeStoryArcFirstAppearancesRepository.Add(newEntity);
            // Try to Save Changes
            EpisodeStoryArcFirstAppearancesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Ejemplo n.º 3
0
        public void Verify_MapToEntity_AssignsEpisodeStoryArcFirstAppearanceProperties()
        {
            // Arrange
            var mapper = new EpisodeStoryArcFirstAppearanceMapper();
            var model  = EpisodeStoryArcFirstAppearancesMockingSetup.DoMockingSetupForEpisodeStoryArcFirstAppearanceModel();
            // Act
            var entity = mapper.MapToEntity(model.Object);

            // Assert
            // <None>
            // Related Objects
            Assert.Equal(model.Object.EpisodeId, entity.EpisodeId);
            Assert.Equal(model.Object.StoryArcId, entity.StoryArcId);
            // Associated Objects
            // <None>
        }
 public void Verify_MapToEntity_WithExistingEntity_AssignsEpisodeStoryArcFirstAppearanceProperties()
 {
     // Arrange
     var mapper = new EpisodeStoryArcFirstAppearanceMapper();
     var model = EpisodeStoryArcFirstAppearancesMockingSetup.DoMockingSetupForEpisodeStoryArcFirstAppearanceModel();
     // Act
     IEpisodeStoryArcFirstAppearance existingEntity = new EpisodeStoryArcFirstAppearance { Id = 1 };
     mapper.MapToEntity(model.Object, ref existingEntity);
     // Assert
     // <None>
     // Related Objects
     Assert.Equal(model.Object.EpisodeId, existingEntity.EpisodeId);
     Assert.Equal(model.Object.StoryArcId, existingEntity.StoryArcId);
     // Associated Objects
     // <None>
 }