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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            VideoTypesRepository.Add(newEntity);
            // Try to Save Changes
            VideoTypesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Esempio n. 3
0
        public void Verify_MapToEntity_AssignsVideoTypeProperties()
        {
            // Arrange
            var mapper = new VideoTypeMapper();
            var model  = VideoTypesMockingSetup.DoMockingSetupForVideoTypeModel();
            // Act
            var entity = mapper.MapToEntity(model.Object);

            // Assert
            // <None>
            // Related Objects
            // <None>
            // Associated Objects
            //Assert.Equal(model.Object.Videos?.Count, entity.Videos?.Count);
            model.VerifyGet(x => x.Videos, Times.Once);
        }
 public void Verify_MapToEntity_WithExistingEntity_AssignsVideoTypeProperties()
 {
     // Arrange
     var mapper = new VideoTypeMapper();
     var model = VideoTypesMockingSetup.DoMockingSetupForVideoTypeModel();
     // Act
     IVideoType existingEntity = new VideoType { Id = 1 };
     mapper.MapToEntity(model.Object, ref existingEntity);
     // Assert
     // <None>
     // Related Objects
     // <None>
     // Associated Objects
     model.VerifyGet(x => x.Videos, Times.Once);
     //Assert.Equal(model.Object.Videos?.Count, existingEntity.Videos?.Count);
 }