-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bài kiểm tra số 2.cs
69 lines (62 loc) · 2.16 KB
/
Bài kiểm tra số 2.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
namespace Quan_li_nhan_su
{
class NhanVCC
{
protected string maso;
protected string hoten;
protected string phai;
protected string ngaysinh;
}
class Nhanvien : NhanVCC
{
private string bangcap;
public string Maso { get => maso; set => maso = value; }
public string Hoten { get => hoten; set => hoten = value; }
public string Phai { get => phai; set => phai = value; }
public string Ngaysinh { get => ngaysinh; set => ngaysinh = value; }
public string Bangcap { get => bangcap; set => bangcap = value; }
public Nhanvien(string MS, string HT, string PP, string NS, string BC)
{
Maso = MS;
Hoten = HT;
Phai = PP;
Ngaysinh = NS;
Bangcap = BC;
}
public void infor()
{
Console.WriteLine(" Ma nhan vien: {0}", Maso);
Console.WriteLine(" Ho ten: {0}", Hoten);
Console.WriteLine(" Gioi tinh: {0}", Phai);
Console.WriteLine(" Ngay sinh: {0}", Ngaysinh);
Console.WriteLine(" Bang cap: {0}", Bangcap);
}
}
class Khachhang : NhanVCC
{
private string loaiKH;
public string Maso { get => maso; set => maso = value; }
public string Hoten { get => hoten; set => hoten = value; }
public string Phai { get => phai; set => phai = value; }
public string Ngaysinh { get => ngaysinh; set => ngaysinh = value; }
public string LoaiKH { get => loaiKH; set => loaiKH = value; }
public Khachhang(string MS, string HT, string PP, string NS, string KH)
{
Maso = MS;
Hoten = HT;
Phai = PP;
Ngaysinh = NS;
LoaiKH = KH;
}
public void infor()
{
Console.WriteLine(" Ma Khach Hang: {0}", Maso);
Console.WriteLine(" Ho ten: {0}", Hoten);
Console.WriteLine(" Gioi tinh: {0}", Phai);
Console.WriteLine(" Ngay sinh: {0}", Ngaysinh);
Console.WriteLine(" Loai Khach Hang: {0}", LoaiKH);
}
}
}