Binding не видит то, что должен выводить

В xaml окне у меня есть TextBlock, который должен выводить данные с помощью Binding. Но он будто не видит, то что должен выводить. Подскажите, пожалуйста, как исправить?

       <TextBlock Grid.Row="0" Grid.Column="0" Text="Подписка:" FontWeight="Bold" FontSize="12" Foreground="White"/>
            <TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding ItemModel.Name}" FontWeight="Bold" FontSize="12" Foreground="White"/>
                            <TextBlock Grid.Row="1" Grid.Column="0" Text="Цена:" FontWeight="Bold" FontSize="12" Foreground="White"/>
            <TextBlock Grid.Row="1" Grid.Column="1" Text="{Binding ItemModel.Price, StringFormat={}{0} руб}" FontWeight="Bold" FontSize="12" Foreground="White"/>
                            <TextBlock Grid.Row="2" Grid.Column="0" Text="Срок подписки:" FontWeight="Bold" FontSize="12" Foreground="White"/>
            <TextBlock Grid.Row="2" Grid.Column="1" Text="{Binding ItemModel.Time, StringFormat={}{0} Месяц}" FontWeight="Bold" FontSize="12" Foreground="White"/>
                            <TextBlock Grid.Row="3" Grid.Column="0" Text="Тема:" FontWeight="Bold" FontSize="12" Foreground="White"/>
            <TextBlock Grid.Row="3" Grid.Column="1" Text="{Binding ItemModel.Topic}" FontWeight="Bold" FontSize="12" Foreground="White"/>
                            <TextBlock Grid.Row="4" Grid.Column="0" Text="Автор:" FontWeight="Bold" FontSize="12" Foreground="White"/>
            <TextBlock Grid.Row="4" Grid.Column="1" Text="{Binding ItemModel.Author}" FontWeight="Bold" FontSize="12" Foreground="White"/>
                                                   


ItemModel берёт всё из базы данных.

 public int id { get; set; }

        private string name, topic, author;
        private int price, time;

        public string Name
        {
            get { return name; }
            set { name = value; }
        }

        public int Price
        {
            get { return price; }
            set { price = value; }
        }

        public int Time
        {
            get { return time; }
            set { time = value; }
        }

        public string Topic
        {
            get { return topic; }
            set { topic = value; }
        }
        public string Author
        {
            get { return author; }
            set { author = value; }
        }

        public ItemModel() { }

        public ItemModel(string name, int price, int time, string topic, string author)
        {
            this.name = name;
            this.price = price;
            this.time = time;
            this.topic = topic;
            this.author = author;
        }

Ответы (0 шт):