Exemple #1
0
        public IVideoModel Update(IVideoModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = VideosRepository.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 (VideoMapper.AreEqual(model, existingEntity))
            {
                return(VideoMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            VideoMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            VideosRepository.Update(VideoMapper.MapToEntity(model));
            // Try to Save Changes
            VideosRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
        public void Verify_AreEqual_WithDifferentObjects_ReturnsFalse()
        {
            // Arrange
            var mapper = new VideoMapper();
            var model  = VideosMockingSetup.DoMockingSetupForVideoModel(1);
            var entity = VideosMockingSetup.DoMockingSetupForVideo(2);
            // Act
            var result = mapper.AreEqual(model.Object, entity.Object);

            // Assert
            Assert.False(result);
        }
 public void Verify_AreEqual_WithEqualObjects_ReturnsTrue()
 {
     // Arrange
     var mapper = new VideoMapper();
     var model = VideosMockingSetup.DoMockingSetupForVideoModel(1);
     var entity = VideosMockingSetup.DoMockingSetupForVideo(1);
     // Act
     var result = mapper.AreEqual(model.Object, entity.Object);
     // Assert
     Assert.True(result);
 }