public QuoteDetailPage(Data.Quote quote) { BindingContext = quote; InitializeComponent(); WorkingCopy = quote; }
public Quote(Quote copy) { this.QuoteText = copy.QuoteText; this.Author = copy.Author; }