Example #1
0
        public IObjectAliasModel Create(IObjectAliasModel 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(ObjectAliasMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            ObjectAliasesRepository.Add(newEntity);
            // Try to Save Changes
            ObjectAliasesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
Example #2
0
        public IObjectAliasModel Update(IObjectAliasModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = ObjectAliasesRepository.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 (ObjectAliasMapper.AreEqual(model, existingEntity))
            {
                return(ObjectAliasMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            ObjectAliasMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            ObjectAliasesRepository.Update(ObjectAliasMapper.MapToEntity(model));
            // Try to Save Changes
            ObjectAliasesRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
 public virtual bool AreEqual(IObjectAliasModel model, IObjectAlias entity)
 {
     return NameableEntityMapper.AreEqual(model, entity)
         // ObjectAlias Properties
         // <None>
         // Related Objects
         && model.ObjectId == entity.ObjectId
         ;
 }
 public virtual bool AreEqual(IObjectAliasModel model, IObjectAlias entity)
 {
     return(NameableEntityMapper.AreEqual(model, entity)
            // ObjectAlias Properties
            // <None>
            // Related Objects
            && model.ObjectId == entity.ObjectId
            );
 }
 public virtual void MapToEntity(IObjectAliasModel model, ref IObjectAlias entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     NameableEntityMapper.MapToEntity(model, ref entity);
     // ObjectAlias Properties
     // <None>
     // Related Objects
     entity.ObjectId = model.ObjectId;
     entity.Object = (Object)model.Object?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual void MapToEntity(IObjectAliasModel model, ref IObjectAlias entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     NameableEntityMapper.MapToEntity(model, ref entity);
     // ObjectAlias Properties
     // <None>
     // Related Objects
     entity.ObjectId = model.ObjectId;
     entity.Object   = (Object)model.Object?.MapToEntity();
     // Associated Objects
     // <None>
 }
 public virtual IObjectAlias MapToEntity(IObjectAliasModel model, int currentDepth = 1)
 {
     currentDepth++;
     var entity = NameableEntityMapper.MapToEntity<ObjectAlias, IObjectAliasModel>(model);
     // ObjectAlias Properties
     // <None>
     // Related Objects
     entity.ObjectId = model.ObjectId;
     entity.Object = (Object)model.Object?.MapToEntity();
     // Associated Objects
     // <None>
     // Return Entity
     return entity;
 }
        public virtual IObjectAlias MapToEntity(IObjectAliasModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = NameableEntityMapper.MapToEntity <ObjectAlias, IObjectAliasModel>(model);

            // ObjectAlias Properties
            // <None>
            // Related Objects
            entity.ObjectId = model.ObjectId;
            entity.Object   = (Object)model.Object?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
        public virtual IObjectAliasSearchModel MapToSearchModel(IObjectAliasModel model)
        {
            var searchModel = NameableEntityMapper.MapToSearchModel <IObjectAliasModel, ObjectAliasSearchModel>(model);

            // Search Properties
            searchModel.ObjectId               = model.ObjectId;
            searchModel.ObjectCustomKey        = model.Object?.CustomKey;
            searchModel.ObjectApiDetailUrl     = model.Object?.ApiDetailUrl;
            searchModel.ObjectSiteDetailUrl    = model.Object?.SiteDetailUrl;
            searchModel.ObjectName             = model.Object?.Name;
            searchModel.ObjectShortDescription = model.Object?.ShortDescription;
            searchModel.ObjectDescription      = model.Object?.Description;
            // Return Search Model
            return(searchModel);
        }
Example #10
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = ObjectAliasesMockingSetup.DoMockingSetupForObjectAlias(1);
            var mockObjectAliasesRepository = ObjectAliasesMockingSetup.DoMockingSetupForRepository();

            mockObjectAliasesRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow     = new ObjectAliasesBusinessWorkflow(mockObjectAliasesRepository.Object, new ObjectAliasMapper());
            var model                = ObjectAliasesMockingSetup.DoMockingSetupForObjectAliasModel(1);
            IObjectAliasModel 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 IObjectAliasModel Create(IObjectAliasModel 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(ObjectAliasMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = ObjectAliasMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     ObjectAliasesRepository.Add(newEntity);
     // Try to Save Changes
     ObjectAliasesRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
 public static bool AreEqual(this IObjectAliasModel model, IObjectAlias entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
 public static IObjectAliasSearchModel MapToSearchModel(this IObjectAliasModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
 public static void MapToEntity(this IObjectAliasModel model, ref IObjectAlias entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
 public static IObjectAlias MapToEntity(this IObjectAliasModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public virtual IObjectAliasSearchModel MapToSearchModel(IObjectAliasModel model)
 {
     var searchModel = NameableEntityMapper.MapToSearchModel<IObjectAliasModel, ObjectAliasSearchModel>(model);
     // Search Properties
     searchModel.ObjectId = model.ObjectId;
     searchModel.ObjectCustomKey = model.Object?.CustomKey;
     searchModel.ObjectApiDetailUrl = model.Object?.ApiDetailUrl;
     searchModel.ObjectSiteDetailUrl = model.Object?.SiteDetailUrl;
     searchModel.ObjectName = model.Object?.Name;
     searchModel.ObjectShortDescription = model.Object?.ShortDescription;
     searchModel.ObjectDescription = model.Object?.Description;
     // Return Search Model
     return searchModel;
 }
 public IObjectAliasModel Update(IObjectAliasModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = ObjectAliasesRepository.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 (ObjectAliasMapper.AreEqual(model, existingEntity))
     {
         return ObjectAliasMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     ObjectAliasMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     ObjectAliasesRepository.Update(ObjectAliasMapper.MapToEntity(model));
     // Try to Save Changes
     ObjectAliasesRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }