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)); }
public void Verify_MapToModel_AssignsVideoTypeProperties() { // Arrange var mapper = new VideoTypeMapper(); var entity = VideoTypesMockingSetup.DoMockingSetupForVideoType(); // Act var model = mapper.MapToModel(entity.Object); // Assert // <None> // Related Objects // <None> // Associated Objects Assert.Equal(entity.Object.Videos?.Count, model.Videos?.Count); }
public IVideoTypeModel Get(string key) { BusinessWorkflowBase.ValidateRequiredKey(key); return(VideoTypeMapper.MapToModel(VideoTypesRepository.Get(key))); }
public IVideoTypeModel Get(int id) { BusinessWorkflowBase.ValidateRequiredID(id); return(VideoTypeMapper.MapToModel(VideoTypesRepository.Get(id))); }