-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.cs
More file actions
64 lines (50 loc) · 1.5 KB
/
interfaces.cs
File metadata and controls
64 lines (50 loc) · 1.5 KB
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
using System;
namespace Ap_Project_Clinic_
{
public interface Iperson
{
string name { get; set; }
string familyname { get; set; }
string phone { get; set; }
string idnumber { get; set; }
}
public interface Ipay : Iperson
{
string account { get; set; }
double salary { get; set; }
string checkout();
double lastcash { get; set; }
string name { get; set; }
string familyname { get; set; }
string idnumber { get; set; }
}
public interface Iturn : Iperson//nokte:be dalil nemayesh dadan name,familyname,... dar datagreed view be in inreface esafeshode ast
{
string name { get; set; }
string familyname { get; set; }
string phone { get; set; }
DateTime date { get; set; }
string work { get; set; }
int minute { get; set; }
string idnumber { get; set; }
string fileid { get; set; }
string doctorname { get; set; }
Boolean noteven { get; set; }
Boolean notodd { get; set; }
int shomarenobat { get; set; }
}
public interface Ipayment
{
DateTime first { get; set; }
string doctorname { get; set; }
double money { get; set; }
int numberofpayment { get; set; }
}
public interface IBime
{
double percent { get; set; }
string name { get; set; }
string familyname { get; set; }
string id { get; set; }
}
}