public IChatModel Create(IChatModel 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(ChatMapper.MapToSearchModel(model));

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

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

            // Assert
            Assert.Equal(model.Object.ChannelName, entity.ChannelName);
            Assert.Equal(model.Object.PasswordHash, entity.PasswordHash);
            // Related Objects
            Assert.Equal(model.Object.ImageFileId, entity.ImageFileId);
            // Associated Objects
            // <None>
        }
 public void Verify_MapToEntity_WithExistingEntity_AssignsChatProperties()
 {
     // Arrange
     var mapper = new ChatMapper();
     var model = ChatsMockingSetup.DoMockingSetupForChatModel();
     // Act
     IChat existingEntity = new Chat { Id = 1 };
     mapper.MapToEntity(model.Object, ref existingEntity);
     // Assert
     Assert.Equal(model.Object.ChannelName, existingEntity.ChannelName);
     Assert.Equal(model.Object.PasswordHash, existingEntity.PasswordHash);
     // Related Objects
     Assert.Equal(model.Object.ImageFileId, existingEntity.ImageFileId);
     // Associated Objects
     // <None>
 }