# Accountant

```csharp
public class Accountant
{
    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;">Accountant</mark> Sınıfı Özellikleri ve Açıklamaları

* **ID**
  * *Açıklama*: Muhasebeciye özgü benzersiz bir kimlik numarası.
  * *Tür*: int
  * *Örnek*: 12345
* **Name**
  * *Açıklama*: Muhasebecinin adı.
  * *Tür*: string
  * *Örnek*: "Ahmet Yılmaz"
* **BuildingNumber**
  * *Açıklama*: Muhasebecinin ofis veya işyeri adresindeki bina ve kapı numarası.
  * *Tür*: string
  * *Örnek*: "12A"
* **Street**
  * *Açıklama*: Muhasebecinin ofis veya işyeri adresindeki cadde ismi.
  * *Tür*: string
  * *Örnek*: "İstiklal Caddesi"
* **City**
  * *Açıklama*: Muhasebecinin ofis veya işyeri adresinde bulunduğu şehir.
  * *Tür*: string
  * *Örnek*: "İstanbul"
* **Country**
  * *Açıklama*: Muhasebecinin ofis veya işyeri adresinde bulunduğu ülke.
  * *Tür*: string
  * *Örnek*: "Türkiye"
* **PostalCode**
  * *Açıklama*: Muhasebecinin ofis veya işyeri adresine ait posta kodu.
  * *Tür*: string
  * *Örnek*: "34567"
* **Phone**
  * *Açıklama*: Muhasebecinin telefon numarası.
  * *Tür*: string
  * *Örnek*: "555-123-4567"
* **Fax**
  * *Açıklama*: Muhasebecinin faks numarası.
  * *Tür*: string
  * *Örnek*: "555-987-6543"
* **Email**
  * *Açıklama*: Muhasebecinin e-posta adresi.
  * *Tür*: string
  * *Örnek*: "<ahmet@example.com>"
* **ContractDate**
  * *Açıklama*: Muhasebecinin işe başlama veya sözleşme tarihi.
  * *Tür*: DateTime
  * *Örnek*: "2024-04-02T09:00:00"
* **AccountantType**
  * *Açıklama*: Muhasebecinin uzmanlık alanını veya türünü belirten bir metin.
  * *Tür*: string
  * *Örnek*: "Serbest Muhasebeci Mali Müşavir"
* **ContractNumber**
  * *Açıklama*: Muhasebecinin sözleşme numarası veya referansı.
  * *Tür*: string
  * *Örnek*: "2024/123"


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.nilvera.com/nilvera-model/eledger/accountant.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
