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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            VolumeObjectsRepository.Add(newEntity);
            // Try to Save Changes
            VolumeObjectsRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
コード例 #3
0
 public virtual bool AreEqual(IVolumeObjectModel model, IVolumeObject entity)
 {
     return(EntityMapper.AreEqual(model, entity)
            // VolumeObject Properties
            // <None>
            // Related Objects
            && model.VolumeId == entity.VolumeId &&
            model.ObjectId == entity.ObjectId
            );
 }
コード例 #4
0
 public virtual void MapToEntity(IVolumeObjectModel model, ref IVolumeObject entity, int currentDepth = 1)
 {
     currentDepth++;
     // Assign Base properties
     EntityMapper.MapToEntity(model, ref entity);
     // VolumeObject Properties
     // <None>
     // Related Objects
     entity.VolumeId = model.VolumeId;
     entity.Volume   = (Volume)model.Volume?.MapToEntity();
     entity.ObjectId = model.ObjectId;
     entity.Object   = (Object)model.Object?.MapToEntity();
     // Associated Objects
     // <None>
 }
コード例 #5
0
        public virtual IVolumeObject MapToEntity(IVolumeObjectModel model, int currentDepth = 1)
        {
            currentDepth++;
            var entity = EntityMapper.MapToEntity <VolumeObject, IVolumeObjectModel>(model);

            // VolumeObject Properties
            // <None>
            // Related Objects
            entity.VolumeId = model.VolumeId;
            entity.Volume   = (Volume)model.Volume?.MapToEntity();
            entity.ObjectId = model.ObjectId;
            entity.Object   = (Object)model.Object?.MapToEntity();
            // Associated Objects
            // <None>
            // Return Entity
            return(entity);
        }
コード例 #6
0
        public void Verify_Update_WithDuplicateData_Should_NotAddAndReturnOriginal()
        {
            // Arrange
            var entity = VolumeObjectsMockingSetup.DoMockingSetupForVolumeObject(1);
            var mockVolumeObjectsRepository = VolumeObjectsMockingSetup.DoMockingSetupForRepository();

            mockVolumeObjectsRepository.Setup(m => m.Get(It.IsAny <int>())).Returns(() => entity.Object);
            var businessWorkflow      = new VolumeObjectsBusinessWorkflow(mockVolumeObjectsRepository.Object, new VolumeObjectMapper());
            var model                 = VolumeObjectsMockingSetup.DoMockingSetupForVolumeObjectModel(1);
            IVolumeObjectModel 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 IVolumeObjectModel Create(IVolumeObjectModel 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(VolumeObjectMapper.MapToSearchModel(model));
     if (results.Any()) { return results.First(); } // Return the first that matches
     // Map model to a new entity
     var newEntity = VolumeObjectMapper.MapToEntity(model);
     newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
     newEntity.UpdatedDate = null;
     newEntity.Active = true;
     // Add it
     VolumeObjectsRepository.Add(newEntity);
     // Try to Save Changes
     VolumeObjectsRepository.SaveChanges();
     // Return the new value
     return Get(newEntity.Id);
 }
コード例 #8
0
        public virtual IVolumeObjectSearchModel MapToSearchModel(IVolumeObjectModel model)
        {
            var searchModel = EntityMapper.MapToSearchModel <IVolumeObjectModel, VolumeObjectSearchModel>(model);

            // Search Properties
            searchModel.VolumeId               = model.VolumeId;
            searchModel.VolumeCustomKey        = model.Volume?.CustomKey;
            searchModel.VolumeApiDetailUrl     = model.Volume?.ApiDetailUrl;
            searchModel.VolumeSiteDetailUrl    = model.Volume?.SiteDetailUrl;
            searchModel.VolumeName             = model.Volume?.Name;
            searchModel.VolumeShortDescription = model.Volume?.ShortDescription;
            searchModel.VolumeDescription      = model.Volume?.Description;
            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);
        }
コード例 #9
0
 public static bool AreEqual(this IVolumeObjectModel model, IVolumeObject entity)
 {
     return(Mapper.AreEqual(model, entity));
 }
コード例 #10
0
 public static IVolumeObjectSearchModel MapToSearchModel(this IVolumeObjectModel model)
 {
     return(Mapper.MapToSearchModel(model));
 }
コード例 #11
0
 public static void MapToEntity(this IVolumeObjectModel model, ref IVolumeObject entity, int currentDepth = 1)
 {
     Mapper.MapToEntity(model, ref entity, currentDepth);
 }
コード例 #12
0
 public static IVolumeObject MapToEntity(this IVolumeObjectModel model, int currentDepth = 1)
 {
     return(Mapper.MapToEntity(model, currentDepth));
 }
 public IVolumeObjectModel Update(IVolumeObjectModel model)
 {
     // Validate model
     BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
     //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
     // Find existing entity
     // ReSharper disable once PossibleInvalidOperationException
     var existingEntity = VolumeObjectsRepository.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 (VolumeObjectMapper.AreEqual(model, existingEntity))
     {
         return VolumeObjectMapper.MapToModel(existingEntity);
     }
     // Map model to an existing entity
     VolumeObjectMapper.MapToEntity(model, ref existingEntity);
     existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
     // Update it
     VolumeObjectsRepository.Update(VolumeObjectMapper.MapToEntity(model));
     // Try to Save Changes
     VolumeObjectsRepository.SaveChanges();
     // Return the new value
     return Get(existingEntity.Id);
 }