Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MMessageProfile" /> class.
 /// </summary>
 /// <param name="profile">MMessageProfile</param>
 public MMessageProfile(MMessageProfile profile)
 {
     if (profile != null)
     {
         this.AddedBy             = profile.AddedBy;
         this.AddedDate           = profile.AddedDate;
         this.Body                = profile.Body;
         this.Description         = profile.Description;
         this.FormatAsHtml        = profile.FormatAsHtml;
         this.Id                  = profile.Id;
         this.Name                = profile.Name;
         this.SecurityEntitySeqId = profile.SecurityEntitySeqId;
         this.Title               = profile.Title;
         this.UpdatedBy           = profile.UpdatedBy;
         this.UpdatedDate         = profile.UpdatedDate;
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MRequestNewPassword" /> class.
 /// </summary>
 /// <param name="profile">MMessageProfile</param>
 public MRequestNewPassword(MMessageProfile profile)
     : base(profile)
 {
 }