public class Customer
{
public int Id { get; set; }
public string CustomerName { get; set; }
public string Contragent { get; set; }
public string PhoneNumber { get; set; }
public bool Delivery { get; set; }
public bool IsCashless { get; set; }
}