Example #1
0
        public ILocationAppearedInIssueModel Update(ILocationAppearedInIssueModel model)
        {
            // Validate model
            BusinessWorkflowBase.ValidateRequiredNullableID(model.Id);
            //BusinessWorkflowBase.ValidateRequiredString(model.Name, nameof(model.Name));
            // Find existing entity
            // ReSharper disable once PossibleInvalidOperationException
            var existingEntity = LocationAppearedInIssuesRepository.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 (LocationAppearedInIssueMapper.AreEqual(model, existingEntity))
            {
                return(LocationAppearedInIssueMapper.MapToModel(existingEntity));
            }
            // Map model to an existing entity
            LocationAppearedInIssueMapper.MapToEntity(model, ref existingEntity);
            existingEntity.UpdatedDate = BusinessWorkflowBase.GenDateTime;
            // Update it
            LocationAppearedInIssuesRepository.Update(LocationAppearedInIssueMapper.MapToEntity(model));
            // Try to Save Changes
            LocationAppearedInIssuesRepository.SaveChanges();
            // Return the new value
            return(Get(existingEntity.Id));
        }
Example #2
0
        public void Verify_AreEqual_WithDifferentObjects_ReturnsFalse()
        {
            // Arrange
            var mapper = new LocationAppearedInIssueMapper();
            var model  = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel(1);
            var entity = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(2);
            // Act
            var result = mapper.AreEqual(model.Object, entity.Object);

            // Assert
            Assert.False(result);
        }
 public void Verify_AreEqual_WithEqualObjects_ReturnsTrue()
 {
     // Arrange
     var mapper = new LocationAppearedInIssueMapper();
     var model = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssueModel(1);
     var entity = LocationAppearedInIssuesMockingSetup.DoMockingSetupForLocationAppearedInIssue(1);
     // Act
     var result = mapper.AreEqual(model.Object, entity.Object);
     // Assert
     Assert.True(result);
 }