How to write SQL query to Calculate monthly report

How to write SQL query to Calculate monthly report, Here is the steps which you need to follow to get the result. Step1) Create table in your database. Step 2) Attendance is bit column (0,1) 0 – Means employee is absent, 1 Means employee is present on that day. I am interested to create the … Read more

Fortran Basics and Its Use in Various Applications

Fortran Basics and Its Use in Various Applications: Read More !!! Fortran is a general purpose imperative programming language, especially suited to scientific and numeric computations. In addition to scientific computing, Fortran is also suitable for use in other programming languages, such as Pascal and C. For more information, read our comprehensive guide to Fortran. … Read more

How to send the token in header angular

To perform the sending token in angular we need to use the interceptor. So, if we make any HTTP call that interceptor will fire. Step 1) Create one .ts file named MyInterCeptor.ts file and placed the below code. Step 2) Open module.ts file Multivalue means, In future you can change the class if you have … Read more

How to generate tokens using Dotnet core

How to generate tokens using Dotnet core, for an angular application. But the same code is used in your other application like if you are making API CALL from React or from other technology. Code in Visual Studio API Project. Step 1 ) Create a Security class in VS. Step 2) Install Microsoft.AspNetCore.Authentication.JwtBearer using Nuget … Read more