public CommentItemDto(CommentTypeDto type, String text, String creator)
 {
     this.Type    = type;
     this.Text    = text;
     this.Creator = creator;
     this.Time    = DateTime.Now;
 }
예제 #2
0
 public PatientCommentDto(CommentTypeDto type, String text, String creator, bool isAlert)
 {
     this.Type    = type;
     this.Text    = text;
     this.Creator = creator;
     this.Time    = DateTime.Now;
     this.IsAlert = isAlert;
 }
예제 #3
0
 public PatientCommentDto(CommentTypeDto type, String text, String creator, bool isAlert, int?accountEnumId)
     : this(type, text, creator, isAlert)
 {
     this.AccountEnumId = accountEnumId;
 }