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

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

            newEntity.CreatedDate = BusinessWorkflowBase.GenDateTime;
            newEntity.UpdatedDate = null;
            newEntity.Active      = true;
            // Add it
            OriginProfilesRepository.Add(newEntity);
            // Try to Save Changes
            OriginProfilesRepository.SaveChanges();
            // Return the new value
            return(Get(newEntity.Id));
        }
        public void Verify_AreEqual_WithDifferentObjects_ReturnsFalse()
        {
            // Arrange
            var mapper = new OriginProfileMapper();
            var model  = OriginProfilesMockingSetup.DoMockingSetupForOriginProfileModel(1);
            var entity = OriginProfilesMockingSetup.DoMockingSetupForOriginProfile(2);
            // Act
            var result = mapper.AreEqual(model.Object, entity.Object);

            // Assert
            Assert.False(result);
        }
        public void Verify_MapToModelLite_AssignsLiteOnlyOriginProfileProperties()
        {
            // Arrange
            var mapper = new OriginProfileMapper();
            var entity = OriginProfilesMockingSetup.DoMockingSetupForOriginProfile();
            // Act
            var model = mapper.MapToModelLite(entity.Object);

            // Assert
            // <None>
            // Related Objects
            Assert.Equal(entity.Object.OriginId, model.OriginId);
            Assert.Equal(entity.Object.ProfileId, model.ProfileId);
        }
        public void Verify_MapToEntity_AssignsOriginProfileProperties()
        {
            // Arrange
            var mapper = new OriginProfileMapper();
            var model  = OriginProfilesMockingSetup.DoMockingSetupForOriginProfileModel();
            // Act
            var entity = mapper.MapToEntity(model.Object);

            // Assert
            // <None>
            // Related Objects
            Assert.Equal(model.Object.OriginId, entity.OriginId);
            Assert.Equal(model.Object.ProfileId, entity.ProfileId);
            // Associated Objects
            // <None>
        }
        public void Verify_MapToSearchModel_AssignsOriginProfileSearchProperties()
        {
            // Arrange
            var mapper = new OriginProfileMapper();
            var model  = OriginProfilesMockingSetup.DoMockingSetupForOriginProfileModel();
            // Act
            var searchModel = mapper.MapToSearchModel(model.Object);

            // Assert
            Assert.Equal(model.Object.OriginId, searchModel.OriginId);
            Assert.Equal(model.Object.Origin?.CustomKey, searchModel.OriginCustomKey);
            Assert.Equal(model.Object.Origin?.ApiDetailUrl, searchModel.OriginApiDetailUrl);
            Assert.Equal(model.Object.Origin?.SiteDetailUrl, searchModel.OriginSiteDetailUrl);
            Assert.Equal(model.Object.Origin?.Name, searchModel.OriginName);
            Assert.Equal(model.Object.Origin?.ShortDescription, searchModel.OriginShortDescription);
            Assert.Equal(model.Object.Origin?.Description, searchModel.OriginDescription);
            Assert.Equal(model.Object.ProfileId, searchModel.ProfileId);
            Assert.Equal(model.Object.Profile?.CustomKey, searchModel.ProfileCustomKey);
            Assert.Equal(model.Object.Profile?.ApiDetailUrl, searchModel.ProfileApiDetailUrl);
            Assert.Equal(model.Object.Profile?.SiteDetailUrl, searchModel.ProfileSiteDetailUrl);
            Assert.Equal(model.Object.Profile?.Name, searchModel.ProfileName);
            Assert.Equal(model.Object.Profile?.ShortDescription, searchModel.ProfileShortDescription);
            Assert.Equal(model.Object.Profile?.Description, searchModel.ProfileDescription);
        }
Ejemplo n.º 7
0
 public IOriginProfileModel Get(string key)
 {
     BusinessWorkflowBase.ValidateRequiredKey(key);
     return(OriginProfileMapper.MapToModel(OriginProfilesRepository.Get(key)));
 }
Ejemplo n.º 8
0
 public IOriginProfileModel Get(int id)
 {
     BusinessWorkflowBase.ValidateRequiredID(id);
     return(OriginProfileMapper.MapToModel(OriginProfilesRepository.Get(id)));
 }