public ICreatorCharacterModel Create(ICreatorCharacterModel 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(CreatorCharacterMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            CreatorCharactersRepository.Add(newEntity);
            // Try to Save Changes
            CreatorCharactersRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
        public ICreatorCharacterModel Update(ICreatorCharacterModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = CreatorCharactersRepository.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 (CreatorCharacterMapper.AreEqual(model, existingEntity))
            {
                return(CreatorCharacterMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            CreatorCharacterMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            CreatorCharactersRepository.Update(CreatorCharacterMapper.MapToEntity(model));
            // Try to Save Changes
            CreatorCharactersRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
 public virtual bool AreEqual(ICreatorCharacterModel model, ICreatorCharacter entity)
 {
     return EntityMapper.AreEqual(model, entity)
         // CreatorCharacter Properties
         // <None>
         // Related Objects
         && model.PersonId == entity.PersonId
         && model.CharacterId == entity.CharacterId
         ;
 }
Esempio n. 4
0
 public virtual bool AreEqual(ICreatorCharacterModel model, ICreatorCharacter entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // CreatorCharacter Properties
            // <None>
            // Related Objects
            && model.PersonId == entity.PersonId &&
            model.CharacterId == entity.CharacterId
            );
 }
 public virtual void MapToEntity(ICreatorCharacterModel model, ref ICreatorCharacter entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // CreatorCharacter Properties
     // <None>
     // Related Objects
     entity.PersonId = model.PersonId;
     entity.Creator = (Person)model.Creator?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
 }
Esempio n. 6
0
 public virtual void MapToEntity(ICreatorCharacterModel model, ref ICreatorCharacter entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // CreatorCharacter Properties
     // <None>
     // Related Objects
     entity.PersonId    = model.PersonId;
     entity.Creator     = (Person)model.Creator?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character   = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual ICreatorCharacter MapToEntity(ICreatorCharacterModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = EntityMapper.MapToEntity<CreatorCharacter, ICreatorCharacterModel>(model);
     // CreatorCharacter Properties
     // <None>
     // Related Objects
     entity.PersonId = model.PersonId;
     entity.Creator = (Person)model.Creator?.MapToEntity();
     entity.CharacterId = model.CharacterId;
     entity.Character = (Character)model.Character?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
Esempio n. 8
0
        public virtual ICreatorCharacter MapToEntity(ICreatorCharacterModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <CreatorCharacter, ICreatorCharacterModel>(model);

            // CreatorCharacter Properties
            // <None>
            // Related Objects
            entity.PersonId    = model.PersonId;
            entity.Creator     = (Person)model.Creator?.MapToEntity();
            entity.CharacterId = model.CharacterId;
            entity.Character   = (Character)model.Character?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
Esempio n. 9
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = CreatorCharactersMockingSetup.DoMockingSetupForCreatorCharacter(1);
            var mockCreatorCharactersRepository = CreatorCharactersMockingSetup.DoMockingSetupForRepository();

            mockCreatorCharactersRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow          = new CreatorCharactersBusinessWorkflow(mockCreatorCharactersRepository.Object, new CreatorCharacterMapper());
            var model                     = CreatorCharactersMockingSetup.DoMockingSetupForCreatorCharacterModel(1);
            ICreatorCharacterModel 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 ICreatorCharacterModel Create(ICreatorCharacterModel 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(CreatorCharacterMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = CreatorCharacterMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     CreatorCharactersRepository.Add(newEntity);
     // Try to Save Changes
     CreatorCharactersRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
Esempio n. 11
0
        public virtual ICreatorCharacterSearchModel MapToSearchModel(ICreatorCharacterModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <ICreatorCharacterModel, CreatorCharacterSearchModel>(model);

            // Search Properties
            searchModel.PersonId                  = model.PersonId;
            searchModel.CreatorApiDetailUrl       = model.Creator?.ApiDetailUrl;
            searchModel.CreatorSiteDetailUrl      = model.Creator?.SiteDetailUrl;
            searchModel.CreatorName               = model.Creator?.Name;
            searchModel.CreatorShortDescription   = model.Creator?.ShortDescription;
            searchModel.CreatorDescription        = model.Creator?.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 ICreatorCharacterModel Update(ICreatorCharacterModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = CreatorCharactersRepository.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 (CreatorCharacterMapper.AreEqual(model, existingEntity))
     {
         return CreatorCharacterMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     CreatorCharacterMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     CreatorCharactersRepository.Update(CreatorCharacterMapper.MapToEntity(model));
     // Try to Save Changes
     CreatorCharactersRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }
Esempio n. 13
0
 public static ICreatorCharacter MapToEntity(this ICreatorCharacterModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
Esempio n. 14
0
 public static void MapToEntity(this ICreatorCharacterModel model, ref ICreatorCharacter entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
Esempio n. 15
0
 public static ICreatorCharacterSearchModel MapToSearchModel(this ICreatorCharacterModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
Esempio n. 16
0
 public static bool AreEqual(this ICreatorCharacterModel model, ICreatorCharacter entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public virtual ICreatorCharacterSearchModel MapToSearchModel(ICreatorCharacterModel model)
 {
     var searchModel = EntityMapper.MapToSearchModel<ICreatorCharacterModel, CreatorCharacterSearchModel>(model);
     // Search Properties
     searchModel.PersonId = model.PersonId;
     searchModel.CreatorApiDetailUrl = model.Creator?.ApiDetailUrl;
     searchModel.CreatorSiteDetailUrl = model.Creator?.SiteDetailUrl;
     searchModel.CreatorName = model.Creator?.Name;
     searchModel.CreatorShortDescription = model.Creator?.ShortDescription;
     searchModel.CreatorDescription = model.Creator?.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;
 }