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 IEpisodeCharacterFirstAppearanceModel Create(IEpisodeCharacterFirstAppearanceModel 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(EpisodeCharacterFirstAppearanceMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            EpisodeCharacterFirstAppearancesRepository.Add(newEntity);
            // Try to Save Changes
            EpisodeCharacterFirstAppearancesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Exemple #3
0
 public virtual bool AreEqual(IEpisodeCharacterFirstAppearanceModel model, IEpisodeCharacterFirstAppearance entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // EpisodeCharacterFirstAppearance Properties
            // <None>
            // Related Objects
            && model.EpisodeId == entity.EpisodeId &&
            model.CharacterId == entity.CharacterId
            );
 }
 public virtual bool AreEqual(IEpisodeCharacterFirstAppearanceModel model, IEpisodeCharacterFirstAppearance entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // EpisodeCharacterFirstAppearance Properties
         // <None>
         // Related Objects
         && model.EpisodeId == entity.EpisodeId
         && model.CharacterId == entity.CharacterId
         ;
 }
Exemple #5
0
 public virtual void MapToEntity(IEpisodeCharacterFirstAppearanceModel model, ref IEpisodeCharacterFirstAppearance entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // EpisodeCharacterFirstAppearance Properties
     // <None>
     // Related Objects
     entity.EpisodeId   = model.EpisodeId;
     entity.Episode     = (Episode)model.Episode?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character   = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IEpisodeCharacterFirstAppearanceModel model, ref IEpisodeCharacterFirstAppearance entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // EpisodeCharacterFirstAppearance Properties
     // <None>
     // Related Objects
     entity.EpisodeId = model.EpisodeId;
     entity.Episode = (Episode)model.Episode?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IEpisodeCharacterFirstAppearance MapToEntity(IEpisodeCharacterFirstAppearanceModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<EpisodeCharacterFirstAppearance, IEpisodeCharacterFirstAppearanceModel>(model);
     // EpisodeCharacterFirstAppearance Properties
     // <None>
     // Related Objects
     entity.EpisodeId = model.EpisodeId;
     entity.Episode = (Episode)model.Episode?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
Exemple #8
0
        public virtual IEpisodeCharacterFirstAppearance MapToEntity(IEpisodeCharacterFirstAppearanceModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <EpisodeCharacterFirstAppearance, IEpisodeCharacterFirstAppearanceModel>(model);

            // EpisodeCharacterFirstAppearance Properties
            // <None>
            // Related Objects
            entity.EpisodeId   = model.EpisodeId;
            entity.Episode     = (Episode)model.Episode?.MapToEntity();
            entity.CharacterId = model.CharacterId;
            entity.Character   = (Character)model.Character?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Exemple #9
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = EpisodeCharacterFirstAppearancesMockingSetup.DoMockingSetupForEpisodeCharacterFirstAppearance(1);
            var mockEpisodeCharacterFirstAppearancesRepository = EpisodeCharacterFirstAppearancesMockingSetup.DoMockingSetupForRepository();

            mockEpisodeCharacterFirstAppearancesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow = new EpisodeCharacterFirstAppearancesBusinessWorkflow(mockEpisodeCharacterFirstAppearancesRepository.Object, new EpisodeCharacterFirstAppearanceMapper());
            var model            = EpisodeCharacterFirstAppearancesMockingSetup.DoMockingSetupForEpisodeCharacterFirstAppearanceModel(1);
            IEpisodeCharacterFirstAppearanceModel result = null;

            // Act
            try { result = businessWorkflow.Update(model.Object); }
            catch { /* ignored, the Get call at the end doesn't work because don't get a real entity with id on it */ }
            // Assert
            Assert.NotNull(result);
            Assert.Equal("/TEST/KING-STEPHEN", result.ApiDetailUrl);
            Assert.Null(result.UpdatedDate);
        }
 public IEpisodeCharacterFirstAppearanceModel Create(IEpisodeCharacterFirstAppearanceModel 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(EpisodeCharacterFirstAppearanceMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = EpisodeCharacterFirstAppearanceMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     EpisodeCharacterFirstAppearancesRepository.Add(newEntity);
     // Try to Save Changes
     EpisodeCharacterFirstAppearancesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
Exemple #11
0
        public virtual IEpisodeCharacterFirstAppearanceSearchModel MapToSearchModel(IEpisodeCharacterFirstAppearanceModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IEpisodeCharacterFirstAppearanceModel, EpisodeCharacterFirstAppearanceSearchModel>(model);

            // Search Properties
            searchModel.EpisodeId                 = model.EpisodeId;
            searchModel.EpisodeCustomKey          = model.Episode?.CustomKey;
            searchModel.EpisodeApiDetailUrl       = model.Episode?.ApiDetailUrl;
            searchModel.EpisodeSiteDetailUrl      = model.Episode?.SiteDetailUrl;
            searchModel.EpisodeName               = model.Episode?.Name;
            searchModel.EpisodeShortDescription   = model.Episode?.ShortDescription;
            searchModel.EpisodeDescription        = model.Episode?.Description;
            searchModel.CharacterId               = model.CharacterId;
            searchModel.CharacterCustomKey        = model.Character?.CustomKey;
            searchModel.CharacterApiDetailUrl     = model.Character?.ApiDetailUrl;
            searchModel.CharacterSiteDetailUrl    = model.Character?.SiteDetailUrl;
            searchModel.CharacterName             = model.Character?.Name;
            searchModel.CharacterShortDescription = model.Character?.ShortDescription;
            searchModel.CharacterDescription      = model.Character?.Description;
            // Return Search Model
            return(searchModel);
        }
 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);
 }
Exemple #13
0
 public static IEpisodeCharacterFirstAppearance MapToEntity(this IEpisodeCharacterFirstAppearanceModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
Exemple #14
0
 public static void MapToEntity(this IEpisodeCharacterFirstAppearanceModel model, ref IEpisodeCharacterFirstAppearance entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Exemple #15
0
 public static IEpisodeCharacterFirstAppearanceSearchModel MapToSearchModel(this IEpisodeCharacterFirstAppearanceModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public virtual IEpisodeCharacterFirstAppearanceSearchModel MapToSearchModel(IEpisodeCharacterFirstAppearanceModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<IEpisodeCharacterFirstAppearanceModel, EpisodeCharacterFirstAppearanceSearchModel>(model);
     // Search Properties
     searchModel.EpisodeId = model.EpisodeId;
     searchModel.EpisodeCustomKey = model.Episode?.CustomKey;
     searchModel.EpisodeApiDetailUrl = model.Episode?.ApiDetailUrl;
     searchModel.EpisodeSiteDetailUrl = model.Episode?.SiteDetailUrl;
     searchModel.EpisodeName = model.Episode?.Name;
     searchModel.EpisodeShortDescription = model.Episode?.ShortDescription;
     searchModel.EpisodeDescription = model.Episode?.Description;
     searchModel.CharacterId = model.CharacterId;
     searchModel.CharacterCustomKey = model.Character?.CustomKey;
     searchModel.CharacterApiDetailUrl = model.Character?.ApiDetailUrl;
     searchModel.CharacterSiteDetailUrl = model.Character?.SiteDetailUrl;
     searchModel.CharacterName = model.Character?.Name;
     searchModel.CharacterShortDescription = model.Character?.ShortDescription;
     searchModel.CharacterDescription = model.Character?.Description;
     // Return Search Model
     return searchModel;
 }
Exemple #17
0
 public static bool AreEqual(this IEpisodeCharacterFirstAppearanceModel model, IEpisodeCharacterFirstAppearance entity)
 {
     return(Mapper.AreEqual(model, entity));
 }