Example #1
0
 public MemoBulletin( DateTime dtDate, string strMessage, Employee employee, Memo memo )
 {
     this._dtDate = dtDate;
     this._strMessage = strMessage;
     this._employee = employee;
     this._memo = memo;
 }
Example #2
0
 public MemoReceipient(Memo memo)
 {
     this._memo = memo;
 }
Example #3
0
 public MemoRead( DateTime dtDate, Employee employee, Memo memo )
 {
     this._dtDate = dtDate;
     this._employee = employee;
     this._memo = memo;
 }
Example #4
0
 public MemoRead(DateTime dtDate, Employee employee, Memo memo)
 {
     this._dtDate   = dtDate;
     this._employee = employee;
     this._memo     = memo;
 }
Example #5
0
 public MemoBranch(Branch branch, Memo memo)
 {
     this._branch = branch;
     this._memo   = memo;
 }