Esempio n. 1
0
        public BookShelf(string currentUsername)
        {
            InitializeComponent();
            this.username     = currentUsername;
            dynamoDbOperation = new DDBOperation();
            string userFirstName = dynamoDbOperation.GetFirstName(username);

            Firstlbl.Content = userFirstName + "!";

            //Loading the Book Shelf of the User
            BooksIntoDataGrid();

            //Adding date and time inside the ReadDateTime textbox
            datetimeTxt.Text = DateTime.Now.ToString();
        }
 public SignUpWindow()
 {
     InitializeComponent();
     op = new DDBOperation();
 }
Esempio n. 3
0
 public MainWindow()
 {
     InitializeComponent();
     ddb = new DDBOperation();
 }