-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource.cs
More file actions
21 lines (17 loc) · 750 Bytes
/
Source.cs
File metadata and controls
21 lines (17 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
namespace Company_Application
{
class Source
{
static void Main(string[] args)
{
// Employee emp = new Employee("FirstName", "LastName", "Address", PhoneNumber, EmployeeNumber, Salary);
Employee Albert = new Employee("Albert", "Einstein", "3450 Thunderbluff, New York, NY, 58156", 123456789, 117, 1000000000);
Albert.PrintInfo();
// Client clnt = new Client("FirstName", "LastName", "Address", PhoneNumber, AccountNumber);
Client Paul = new Client("Paul", "Dirac", "5236N Iron Forge Way, Salt Lake City, Utah, 85214", 6543219876, 343);
Paul.PrintInfo();
Console.ReadKey();
}
}
}