SPSphinx / Egyptian-eInvoicing-eSeal-Solution

SP01 Middleware (eSeal Solution) is the simplest way to connect your business to Egyptian Tax Authority (ETA)
6 stars 10 forks source link
b2b business egyptian egypttrust einvoicing eseal eta invoicing provider sp01 tax

Egyptian eInvoicing eSeal Solution Provider

eSeal Solution is a smart service to deliver the eInvoice from the taxpayers ERP business to the Egyptian Tax Authority (ETA) with high efficiency and short time, it will do all the calculation, serialization, signing of their invoices and send all to (ETA) system.

How to use

MiddlwareLibraryCore is the main library to communicate with the eSeal Solution

var invoice = new Invoice ();
invoice. DateTimeIssued = DateTime.UtcNow;
invoice.InternalId = "IID001";
invoice.ExtraDiscountAmount = 5;
IHttpClientHelper<Invoice> helper = new HttpClientHelper<Invoice>();
var url = "<Middleware Ulr>";
var result = default(ResponseModel);
helper.PostAsync<ResponseModel>(url, invoice).ContinueWith(t => result = t.Result);