Пример #1
0
 public Cash(YZReader reader)
 {
     this.ItemID   = reader.ReadInt32("ItemID");
     this.Account  = reader.ReadString("Account");
     this.Type     = reader.ReadString("Type");
     this.Date     = reader.ReadDateTime("Date");
     this.Amount   = reader.ReadDecimal("Amount");
     this.Invoice  = reader.ReadString("Invoice");
     this.Comments = reader.ReadString("Comments");
     this.CreateAt = reader.ReadDateTime("CreateAt");
 }