22 lines
465 B
C#
Raw Normal View History

2024-12-20 20:09:17 +04:00
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
};
}
}