コード例 #1
0
ファイル: Employee.cs プロジェクト: R4CLucky14/FreakyFastFood
 //    [Required]
 //    public string Paycheck { get; set; }
 public Employee(RegisterViewModel Register)
     : base(Register)
 {
 }
コード例 #2
0
 public Representative( RegisterViewModel Register )
     : base(Register)
 {
     this.Chains = new Collection<Chain>();
     this.Restaurants = new Collection<Restaurant>();
 }