Ejemplo n.º 1
0
 public MessageOpenMechanismInfo FormData(MessageOpenMechanismInfo info)
 {
     info.Name     = this.Name;
     info.Phone    = this.Phone;
     info.Mailbox  = this.Mailbox;
     info.Address  = this.Address;
     info.MeetTime = this.MeetTime;
     return(info);
 }
Ejemplo n.º 2
0
 public MessageOpenMechanismModel ToModel(MessageOpenMechanismInfo info)
 {
     this.Id       = info.Id;
     this.Name     = info.Name;
     this.Phone    = info.Phone;
     this.Mailbox  = info.Mailbox;
     this.Address  = info.Address;
     this.MeetTime = info.MeetTime;
     return(this);
 }
Ejemplo n.º 3
0
        public MessageOpenMechanismInfo ToInfo()
        {
            MessageOpenMechanismInfo info = new MessageOpenMechanismInfo();

            info.Name     = this.Name;
            info.Phone    = this.Phone;
            info.Mailbox  = this.Mailbox;
            info.Address  = this.Address;
            info.MeetTime = this.MeetTime;
            return(info);
        }