public void CreateUserNotify()
        {
            // Act
            CreateUserNotificationCommandHandler commandHandler = new CreateUserNotificationCommandHandler();
            commandHandler.Execute(new DataModel.Commands.CreateUserCommand("User1", "User1", "*****@*****.**"));

            // Assert
            // Exception should not throw
        }
        public void CreateUserNotify()
        {
            // Act
            CreateUserNotificationCommandHandler commandHandler = new CreateUserNotificationCommandHandler();

            commandHandler.Execute(new DataModel.Commands.CreateUserCommand("User1", "User1", "*****@*****.**"));


            // Assert
            // Exception should not throw
        }