示例#1
0
        public IResourceTypeModel Create(IResourceTypeModel 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(ResourceTypeMapper.MapToSearchModel(model));

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            ResourceTypesRepository.Add(newEntity);
            // Try to Save Changes
            ResourceTypesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
示例#2
0
        public IResourceTypeModel Update(IResourceTypeModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = ResourceTypesRepository.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 (ResourceTypeMapper.AreEqual(model, existingEntity))
            {
                return(ResourceTypeMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            ResourceTypeMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            ResourceTypesRepository.Update(ResourceTypeMapper.MapToEntity(model));
            // Try to Save Changes
            ResourceTypesRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
示例#3
0
        public void Verify_MapToEntity_AssignsResourceTypeProperties()
        {
            // Arrange
            var mapper = new ResourceTypeMapper();
            var model  = ResourceTypesMockingSetup.DoMockingSetupForResourceTypeModel();
            // Act
            var entity = mapper.MapToEntity(model.Object);

            // Assert
            Assert.Equal(model.Object.DetailResourceName, entity.DetailResourceName);
            Assert.Equal(model.Object.ListResourceName, entity.ListResourceName);
            // Related Objects
            // <None>
            // Associated Objects
            //Assert.Equal(model.Object.Promos?.Count, entity.Promos?.Count);
            model.VerifyGet(x => x.Promos, Times.Once);
        }
 public void Verify_MapToEntity_WithExistingEntity_AssignsResourceTypeProperties()
 {
     // Arrange
     var mapper = new ResourceTypeMapper();
     var model = ResourceTypesMockingSetup.DoMockingSetupForResourceTypeModel();
     // Act
     IResourceType existingEntity = new ResourceType { Id = 1 };
     mapper.MapToEntity(model.Object, ref existingEntity);
     // Assert
     Assert.Equal(model.Object.DetailResourceName, existingEntity.DetailResourceName);
     Assert.Equal(model.Object.ListResourceName, existingEntity.ListResourceName);
     // Related Objects
     // <None>
     // Associated Objects
     model.VerifyGet(x => x.Promos, Times.Once);
     //Assert.Equal(model.Object.Promos?.Count, existingEntity.Promos?.Count);
 }