Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
Ejemplo n.º 1
0
        public FeedEvent(Speaker speaker)
        {
            var thelaw = speaker.Law;

            this.date = speaker.Law.Proposed.Value;
            this.BodyText = thelaw.Summary.PresentText(200);

            this.ActionUrl = thelaw.DetailsLink();
            this.ActionText = "Blev ordfører for " + thelaw.ShortName.PresentText(35);
        }
Ejemplo n.º 2
0
 partial void DeleteSpeaker(Speaker instance);
Ejemplo n.º 3
0
 partial void UpdateSpeaker(Speaker instance);
Ejemplo n.º 4
0
 partial void InsertSpeaker(Speaker instance);
Ejemplo n.º 5
0
 private void detach_Speakers(Speaker entity)
 {
     this.SendPropertyChanging();
     entity.Politician = null;
 }
Ejemplo n.º 6
0
 private void attach_Speakers(Speaker entity)
 {
     this.SendPropertyChanging();
     entity.Law = this;
 }