Skip to content
Arnab Roy Chowdhury edited this page May 31, 2021 · 4 revisions

Medical system is a small application build with ASP.NET 5 and EF to document medical records. User can store doctor, patient and consultation information in this application with their web browser. This is a proof of concept of how we can use microservice with ASP.NET 5.

There are three microservices created with gRPC.

  • Doctor service
  • Patient service
  • Consultation service

There is a gateway through which client application can communicate with the three microservices.

One client application is there created with ASP.NET MVC which works like a frontend.

Two background jobs has been created with Azure function to sync the database between doctor, patient and consultation. This will be replaced with event bus in the future.

Clone this wiki locally