Esempio n. 1
0
 public void CopyToBase(TCom.EF.Notice notice)
 {
     notice.idnotice     = this.idnotice;
     notice.publish      = this.publish;
     notice.title        = this.title;
     notice.publish_time = this.publish_time;
     notice.start_time   = this.start_time;
     notice.end_time     = this.end_time;
     notice.content      = this.content;
 }
Esempio n. 2
0
 public void CopyFromBase(TCom.EF.Notice notice)
 {
     this.idnotice     = notice.idnotice;
     this.publish      = notice.publish;
     this.title        = notice.title;
     this.publish_time = notice.publish_time;
     this.start_time   = notice.start_time;
     this.end_time     = notice.end_time;
     this.content      = notice.content;
 }