Esempio n. 1
0
        public fblaChapterWCF convertToWCF(fblaChapter f)
        {
            fblaChapterWCF fbla = new fblaChapterWCF();

            fbla.id            = f.id;
            fbla.name          = f.name;
            fbla.state         = f.state;
            fbla.city          = f.city;
            fbla.school        = f.school;
            fbla.contact_email = f.contact_email;
            fbla.payment_email = f.payment_email;
            fbla.picture       = f.picture;


            return(fbla);
        }
Esempio n. 2
0
 public fblaChapter convertFromWCF(fblaChapterWCF f)
 {
     return(new fblaChapter(f.id, f.name, f.state, f.city, f.school, f.contact_email, f.payment_email, f.picture));
 }