You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
493 B

11 years ago
11 years ago
11 years ago
  1. 
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace Sevomin.Models
  4. {
  5. [Table("Dovomin")]
  6. public class Dovomin : User
  7. {
  8. public string FirstName { get; set; }
  9. public string LastName { get; set; }
  10. public Dovomin()
  11. {
  12. }
  13. public Dovomin(string userName, string firstName, string lastName)
  14. : base(userName)
  15. {
  16. this.FirstName = firstName;
  17. this.LastName = lastName;
  18. }
  19. }
  20. }