//    [Required]
 //    public string Paycheck { get; set; }
 public Employee(RegisterViewModel Register)
     : base(Register)
 {
 }
 public Representative( RegisterViewModel Register )
     : base(Register)
 {
     this.Chains = new Collection<Chain>();
     this.Restaurants = new Collection<Restaurant>();
 }