# Accounting

```csharp
public class AccountantDto
{
    public int ID { get; set; }
    public string Name { get; set; }
    public string BuildingNumber { get; set; }
    public string Street { 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 Email { get; set; }
    public DateTime ContractDate { get; set; }
    public string AccountantType { get; set; }
    public string ContractNumber { get; set; }
}
```

### <mark style="color:blue;">AccountantDto</mark> Class Features and Descriptions

* **ID**
  * Explanation: A unique identification number specific to the accountant.
  * Type: int
  * Example: 12345
* **Name**
  * Explanation: Accountant's name.
  * Type: string
  * Example: "Ahmet Yılmaz"
* **BuildingNumber**
  * Explanation: The building and door number of the accountant's office or workplace.
  * Type: string
  * Example: "12A"
* **Street**
  * Explanation: The street name of the accountant's office or workplace address.
  * Type: string
  * Example: "İstiklal Caddesi"
* **City**
  * Explanation: The city where the accountant's office or workplace is located.
  * Type: string
  * Example: "İstanbul"
* **Country**
  * Explanation: The country where the accountant has her office or workplace.
  * Type: string
  * Example: "Türkiye"
* **PostalCode**
  * Explanation: The postal code of the accountant's office or workplace address.
  * Type: string
  * Example: "34567"
* **Phone**
  * Explanation: Accountant's phone number.
  * Type: string
  * Example: "555-123-4567"
* **Fax**
  * Explanation: Accountant's fax number.
  * Type: string
  * Example: "555-987-6543"
* **Email**
  * Explanation: Accountant's email address.
  * Type: string
  * Example: "<ahmet@example.com>"
* **ContractDate**
  * Explanation: The accountant's starting or contract date.
  * Type: DateTime
  * Example: "2024-04-02T09:00:00"
* **AccountantType**
  * Explanation: A text indicating the accountant's area or type of expertise.
  * Type: string
  * Example: "Serbest Muhasebeci Mali Müşavir"
* **ContractNumber**
  * Explanation: Accountant's contract number or reference.
  * Type: string
  * Example: "2024/123"

####
