Advertisement
Guest User

Untitled

a guest
May 6th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public class Serial
  2. {
  3. [Key]
  4. [Column(TypeName = "BIGINT", Order = 0)]
  5. public Int64 LiIdR { get; set; }
  6. [ForeignKey("LiIdR")]
  7. public virtual Rows Row { get; set; }
  8.  
  9. [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
  10. public Int16 SRadifS { get; set; }
  11. public string AFromSerial { get; set; }
  12. public string AToSerial { get; set; }
  13. public int? IQnty { get; set; }
  14. public string AExpireDate { get; set; }
  15. public string AComment { get; set; }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement