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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            CharacterStoryArcsRepository.Add(newEntity);
            // Try to Save Changes
            CharacterStoryArcsRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
 public virtual bool AreEqual(ICharacterStoryArcModel model, ICharacterStoryArc entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // CharacterStoryArc Properties
         // <None>
         // Related Objects
         && model.CharacterId == entity.CharacterId
         && model.StoryArcId == entity.StoryArcId
         ;
 }
 public virtual bool AreEqual(ICharacterStoryArcModel model, ICharacterStoryArc entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // CharacterStoryArc Properties
            // <None>
            // Related Objects
            && model.CharacterId == entity.CharacterId &&
            model.StoryArcId == entity.StoryArcId
            );
 }
 public virtual void MapToEntity(ICharacterStoryArcModel model, ref ICharacterStoryArc entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // CharacterStoryArc Properties
     // <None>
     // Related Objects
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     entity.StoryArcId = model.StoryArcId;
     entity.StoryArc = (StoryArc)model.StoryArc?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(ICharacterStoryArcModel model, ref ICharacterStoryArc entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // CharacterStoryArc Properties
     // <None>
     // Related Objects
     entity.CharacterId = model.CharacterId;
     entity.Character   = (Character)model.Character?.MapToEntity();
     entity.StoryArcId  = model.StoryArcId;
     entity.StoryArc    = (StoryArc)model.StoryArc?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual ICharacterStoryArc MapToEntity(ICharacterStoryArcModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<CharacterStoryArc, ICharacterStoryArcModel>(model);
     // CharacterStoryArc Properties
     // <None>
     // Related Objects
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     entity.StoryArcId = model.StoryArcId;
     entity.StoryArc = (StoryArc)model.StoryArc?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual ICharacterStoryArc MapToEntity(ICharacterStoryArcModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <CharacterStoryArc, ICharacterStoryArcModel>(model);

            // CharacterStoryArc Properties
            // <None>
            // Related Objects
            entity.CharacterId = model.CharacterId;
            entity.Character   = (Character)model.Character?.MapToEntity();
            entity.StoryArcId  = model.StoryArcId;
            entity.StoryArc    = (StoryArc)model.StoryArc?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = CharacterStoryArcsMockingSetup.DoMockingSetupForCharacterStoryArc(1);
            var mockCharacterStoryArcsRepository = CharacterStoryArcsMockingSetup.DoMockingSetupForRepository();

            mockCharacterStoryArcsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow           = new CharacterStoryArcsBusinessWorkflow(mockCharacterStoryArcsRepository.Object, new CharacterStoryArcMapper());
            var model                      = CharacterStoryArcsMockingSetup.DoMockingSetupForCharacterStoryArcModel(1);
            ICharacterStoryArcModel 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 ICharacterStoryArcModel Create(ICharacterStoryArcModel 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(CharacterStoryArcMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = CharacterStoryArcMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     CharacterStoryArcsRepository.Add(newEntity);
     // Try to Save Changes
     CharacterStoryArcsRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
        public virtual ICharacterStoryArcSearchModel MapToSearchModel(ICharacterStoryArcModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <ICharacterStoryArcModel, CharacterStoryArcSearchModel>(model);

            // Search Properties
            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;
            searchModel.StoryArcId               = model.StoryArcId;
            searchModel.StoryArcCustomKey        = model.StoryArc?.CustomKey;
            searchModel.StoryArcApiDetailUrl     = model.StoryArc?.ApiDetailUrl;
            searchModel.StoryArcSiteDetailUrl    = model.StoryArc?.SiteDetailUrl;
            searchModel.StoryArcName             = model.StoryArc?.Name;
            searchModel.StoryArcShortDescription = model.StoryArc?.ShortDescription;
            searchModel.StoryArcDescription      = model.StoryArc?.Description;
            // Return Search Model
            return(searchModel);
        }
 public static bool AreEqual(this ICharacterStoryArcModel model, ICharacterStoryArc entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static ICharacterStoryArcSearchModel MapToSearchModel(this ICharacterStoryArcModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this ICharacterStoryArcModel model, ref ICharacterStoryArc entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
 public static ICharacterStoryArc MapToEntity(this ICharacterStoryArcModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public virtual ICharacterStoryArcSearchModel MapToSearchModel(ICharacterStoryArcModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<ICharacterStoryArcModel, CharacterStoryArcSearchModel>(model);
     // Search Properties
     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;
     searchModel.StoryArcId = model.StoryArcId;
     searchModel.StoryArcCustomKey = model.StoryArc?.CustomKey;
     searchModel.StoryArcApiDetailUrl = model.StoryArc?.ApiDetailUrl;
     searchModel.StoryArcSiteDetailUrl = model.StoryArc?.SiteDetailUrl;
     searchModel.StoryArcName = model.StoryArc?.Name;
     searchModel.StoryArcShortDescription = model.StoryArc?.ShortDescription;
     searchModel.StoryArcDescription = model.StoryArc?.Description;
     // Return Search Model
     return searchModel;
 }
 public ICharacterStoryArcModel Update(ICharacterStoryArcModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = CharacterStoryArcsRepository.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 (CharacterStoryArcMapper.AreEqual(model, existingEntity))
     {
         return CharacterStoryArcMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     CharacterStoryArcMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     CharacterStoryArcsRepository.Update(CharacterStoryArcMapper.MapToEntity(model));
     // Try to Save Changes
     CharacterStoryArcsRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }