21 lines
378 B
C#
21 lines
378 B
C#
namespace Aufgabe19;
|
|
|
|
public class Customer
|
|
{
|
|
public Customer()
|
|
{
|
|
|
|
}
|
|
public Customer(int id, string firstName, string lastName)
|
|
{
|
|
this.Id = id;
|
|
this.FirstName = firstName;
|
|
this.LastName = lastName;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
} |