> For the complete documentation index, see [llms.txt](https://developer.nilvera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.nilvera.com/nilvera-model/eledger/accountant.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
