2021-02-25 13:31:24 +11:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Queries
|
2021-02-24 16:44:23 +11:00
|
|
|
|
{
|
|
|
|
|
public class Movie
|
|
|
|
|
{
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public float Rating { get; set; }
|
2021-02-25 13:31:24 +11:00
|
|
|
|
private int _year;
|
|
|
|
|
public int Year {
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine($"Returning {_year} for {Title}");
|
|
|
|
|
return _year;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_year = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-24 16:44:23 +11:00
|
|
|
|
}
|
|
|
|
|
}
|