Posts

Showing posts from September, 2019

What is an API?

Image
What is an API? API  stands for Application Programming Interface and it used as a communication protocol between a client and server which intended to simplify the building of client-side software.It allows users to communicate without knowing how they are implemented.Also it can be described as a contract between the client and the server.When client makes a request in a specific format, it will always get a response in a specific format  from the server. An API can be used in,  Web-based systems Operating systems Database systems computer hardware Software Libraries API is a simplified way to connect your infrastructure through cloud-native app development. It also allows you to share your data with clients and other external parties. Public APIs represent unique business value because they can simplify and expand how you connect with your peers. For example, A newspapers distributing company can give an app for their customers These kind of ap

Angular 08 - How to create Angular CRUD operations with web API (Part A)

Image
How to create Angular CRUD operations with web API Today we are going to build a  application using and Angular with web API to add ,delete and update employee details .  Step 01 -  Create a project using visual studio First we should create a Microsoft Visual Studio Project to develop the web API. when you are creating new project follow below steps. File →  New  →  Project  →  AP.Net.Web Application → Give a name and location (webapi)  → select "ok"→ select "web API" → select "ok". Step 02  -  Create database and tables in SQL After that we can create database using Microsoft Server Management Studio.Follow below steps to create a database. Create Database Database →New Database → give a name to database (EmployeeDB) → Select "ok". Now you can see the database which we created under database node. Create Table  Table → New Table → give a name to table.(Employee) Step 03 Create model L

Enterprise Resource Planning - 2

Image
Challenges in Adopting Enterprise Resource Planning  Systems Most of the ERP systems are developed in European countries and those ERP systems are not 100% fit with developing countries. Because there are technical and economic gaps between developed and developing countries. Adopting an Enterprise Resource Planning Systems in a developing country is a challenge.  we can categorize those challenges as Economical, Implementation and cultural challenges. Economic Challenges Cost of software acquisitions. Cost of license. Cost of ERP consultants. High Configuration cost. Lower turnovers of companies. Implementation Challenges Poor level of business best practices. Poor quality of data. Lack of proper experience. Lack of consultation. Poor level of interaction. Unavailability of hardware. Cultural Challenges Poor level of business best practices. Poor quality of data. Lack of proper experience. Lack of consultation. Poor level of interactio

Angular 7 - Angular Routes

Image
Angular Routes Today i am going to tell you about Angular Routing and I will show you how to navigate the application with router links.Let's start learning Angular Routing. The Angular Router is used to navigate from one view to the next view when users perform certain application task. We normally use browser for navigation.We use browser for navigation as follows.  Enter a URL in the address bar and  navigates to a required page. Click links on the web page and navigates to a new page. Click the browser's back and forward buttons and navigates by using browser history. Angular Routing also based on above browser model.It used URL as an instruction to navigate to a view. When we bind the router to links on a page and it will navigate to the appropriate application or component view when the user clicks a link.  Also we can navigate users when they clicks a button. Also the router logs activities in the browser's history .Therefore we can use back