public IEpisodeCharacterFirstAppearanceModel Update(IEpisodeCharacterFirstAppearanceModel model) { // Validate model BusinessWorkflowBase.ValidateRequiredNullableID(model.Id); //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name)); // Find existing entity // ReSharper disable once PossibleInvalidOperationException var existingEntity = EpisodeCharacterFirstAppearancesRepository.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 (EpisodeCharacterFirstAppearanceMapper.AreEqual(model, existingEntity)) { return(EpisodeCharacterFirstAppearanceMapper.MapToModel(existingEntity)); } // Map model to an existing entity EpisodeCharacterFirstAppearanceMapper.MapToEntity(model, ref existingEntity); existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime; // Update it EpisodeCharacterFirstAppearancesRepository.Update(EpisodeCharacterFirstAppearanceMapper.MapToEntity(model)); // Try to Save Changes EpisodeCharacterFirstAppearancesRepository.SaveChanges(); // Return the new value return(Get(existingEntity.Id)); }
public void Verify_MapToModel_AssignsEpisodeCharacterFirstAppearanceProperties() { // Arrange var mapper = new EpisodeCharacterFirstAppearanceMapper(); var entity = EpisodeCharacterFirstAppearancesMockingSetup.DoMockingSetupForEpisodeCharacterFirstAppearance(); // Act var model = mapper.MapToModel(entity.Object); // Assert // <None> // Related Objects Assert.Equal(entity.Object.EpisodeId, model.EpisodeId); Assert.Equal(entity.Object.CharacterId, model.CharacterId); // Associated Objects // <None> }
public IEpisodeCharacterFirstAppearanceModel Get(int id) { BusinessWorkflowBase.ValidateRequiredID(id); return(EpisodeCharacterFirstAppearanceMapper.MapToModel(EpisodeCharacterFirstAppearancesRepository.Get(id))); }
public IEpisodeCharacterFirstAppearanceModel Get(string key) { BusinessWorkflowBase.ValidateRequiredKey(key); return(EpisodeCharacterFirstAppearanceMapper.MapToModel(EpisodeCharacterFirstAppearancesRepository.Get(key))); }