Himani Gajjar

Himani Gajjar

  • NA
  • 4
  • 359

Azure function in visual studio and displaying output in MVC using C#

Apr 15 2021 3:36 AM
OrderService – Responsible for handling logins, and creating and processing user requests (Orders) for products and/or services.
InventoryService – Responsible for handling maintenance and supply of the products and/or services data and returning queries about the products and/or services including stock levels (how many available) for each product.
AccountingService – Downloads data from OrderService and InventoryService for the production and issuing of Invoices. Handles the billing for the case of a business ordering more of an item than we have in stock.
The services need to securely authenticate their server-to-server conversations with each other.
 
 For Order Details:
In MVC - user enters login name password
send that to Azure
use login write an azure function to get username and password , got to sql server check whether its valid user or not send the result back to MVC
 

Answers (1)