static void nhapSX(List <NhanVienSX> list) { NhanVienSX sx = new NhanVienSX(); Console.WriteLine("Nhap ho ten nhan vien:"); sx.Name = Console.ReadLine(); NgaySinh ass = new NgaySinh(); Console.WriteLine("Nhap Ngay:"); ass.Day = int.Parse(Console.ReadLine()); Console.WriteLine("Nhap thang:"); ass.Month = int.Parse(Console.ReadLine()); Console.WriteLine("Nhap nam:"); ass.Year = int.Parse(Console.ReadLine()); sx.BirthDay = ass; Console.WriteLine("Nhap dia chi:"); sx.Name = Console.ReadLine(); Console.WriteLine("Nhap so ngay lam:"); sx.SanPham = double.Parse(Console.ReadLine()); list.Add(sx); }
static void nhapCN(List <NhanVienCN> list) { NhanVienCN cn = new NhanVienCN(); Console.WriteLine("Nhap ho ten nhan vien:"); cn.Name = Console.ReadLine(); NgaySinh ass = new NgaySinh(); Console.WriteLine("Nhap Ngay:"); ass.Day = int.Parse(Console.ReadLine()); Console.WriteLine("Nhap thang:"); ass.Month = int.Parse(Console.ReadLine()); Console.WriteLine("Nhap nam:"); ass.Year = int.Parse(Console.ReadLine()); cn.BirthDay = ass; Console.WriteLine("Nhap dia chi:"); cn.Adrres = Console.ReadLine(); Console.WriteLine("Nhap so ngay lam:"); cn.NgayLam = int.Parse(Console.ReadLine()); list.Add(cn); }
public NhanVien(NgaySinh birthDay, string name, string adrres) { this._birthDay = birthDay; this._name = name; this._adrres = adrres; }
public NhanVienCN(int ngayLam, NgaySinh birthDay, string name, string adrres) : base(birthDay, name, adrres) { this._ngayLam = ngayLam; }
public NhanVienSX(double sanPham, NgaySinh birthDay, string name, string adrres) : base(birthDay, name, adrres) { this._sanPham = sanPham; }