22 lines
465 B
C#

namespace LDBproject.Entities;
public class CustomerCard
{
public int CardID { get; private set; }
public string FIO { get; private set; }
public DateTime AgeBirthday { get; private set; }
public static CustomerCard AddCustomer(
int cardIndex, string fullName, DateTime year)
{
return new CustomerCard
{
CardID = cardIndex,
FIO = fullName,
AgeBirthday = year
};
}
}