skip to Main Content

Asp.net – Calling endpoint in api from Blazor

I have such a service public Sell Sell(Guid guid, double Quantity) { Sell sell = new Sell(); var result = _connectionDB.States.Find(guid); sell.Name = result.Name; sell.EAN = result.EAN; sell.Profit = result.Profit; sell.Quantity = Quantity; sell.SellePriceBrutto = result.SellePriceBrutto; sell.GTU = result.GTU; sell.dateTimeSell…

VIEW QUESTION
Back To Top
Search