# SellerInfo

> This is the area where the information of the person who provided the services listed on the receipt will be entered.

{% hint style="info" %}
SellerInfo is derived from the EBillSellerInfoDto object.
{% endhint %}

```csharp
public class EBillSellerInfoDto : AddressInfoDto
{
    public string User { get; set; }
    public string TableNo { get; set; }
}
```

```csharp
public class AddressInfoDto
{
     public string Address { get; set; }
     public string District { get; set; }
     public string City { get; set; }
     public string Country { get; set; }
     public string PostalCode { get; set; }
     public string Phone { get; set; }
     public string Fax { get; set; }
     public string Mail { get; set; }
     public string WebSite { get; set; }
}
```

### User

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the service provider's full name will be entered.

### TableNo

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the area where the table number will be entered.

### Address

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the service provider's address information will be entered.

### District

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the district information of the service provider will be entered.

### City

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the city information of the service provider will be entered.

### Country

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the service provider's country information will be entered.

### PostalCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the service provider's postal code will be entered.

### Phone

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the service provider's phone number will be entered.

### Fax

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The fax number of the service provider is entered.

### Mail

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The email address of the service provider is entered.

### WebSite

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The website information of the service provider is entered.
