SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7518
A Repository Application Developed using .NET MVC and Angularjs for
Interoperability Enabling Platform Sales Improvement in
Healthcare Industry
Jnaneshwari Math1 and Dr. Shobha G2
Department of Computer Science and Engineering, Rashtreeya Vidyalaya College of Engineering, Bangalore,
Karnataka, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Healthcare Industry provides healthcare products and solutions for diagnostic, treatment, and preventive care.
Interoperability between these products and solutions becomes the biggest challenge in the healthcare industry because of their
different architectures. The success of interoperability enabling platform depends on the customer satisfaction, support and
services by the vendors or organization, finding the opportunity in improving the sales. This is achieved with the visibility or
analysis of the available data. There is need for a single application, which stores all the information and serves needs of the
internal customer (other business units), sales team and financial team, implantation and service team, support team.
1. INTRODUCTION
Healthcare Industry provides healthcare solutions for diagnostic, treatment, and preventive care. In healthcare,
interoperability is ability to make the healthcare products and solutions to communicate and exchange the data.
Interoperability becomes the biggest challenges in the healthcare industry because the different systems have the different
architecture and infrastructure. The various software are present in the industry that provides standards-based point of
interoperability, which enables interoperability between solutions and reduces the complexity and the cost in the healthcare
environment. Such interoperability-enabling platform isinstalledonthethousandsof thehospitalswhowantsinteroperability
feature between the devices. These support hundreds of product lines hence it is verydifficulttotrack,rememberthesitesand
products installed on the sites. There is need for a single application, which stores all the information and serves needs of the
internal customer (other business units), sales team and financial team, implantation and service team, support team.
An application developed that keeps a record of the detailed information of the customers, the products with its
configuration and settings. With visibility provided by application into ‘what the customer has’, implementation and services
team has ability to plan their effort more efficiently and deliver the services with minimal efforts and allows reuse of assets
already available in the customer environment. It allows faster troubleshooting of the product issues reported by customer.
Repository application is developed using .NET MVC Frame Work and Angularjs
A. ARCHITECTURE OF REPOSITORY APPLCATION
The architecture of Repository applicationisshownintheFigure.1.Theoverall systemarchitectureconsistsof threelayers.
The first user interface layer made of Angular JS and HTML to interact with the user. The second intermediate layer consisting
of the java classes, which handles the interaction between the user and the database. The third layer is the SQL database that
holds all data for the application. The second layer consists of four layers (Model, View, Controller class) for better
performance.
As seen in Figure.1 the user sends the requests (POST, PUT, GET, DELETE) to the front end, which will pass it on to the
middle layer where depending on the type of request, made thecorrespondingfunctioniscalled.TheController, whichisa part
of the middle layer, makes a request to the database (MySQL) and the fetched result will traverse back to the user in the same
direction. Database contains the three types of data product related data, sales data and the configuration files.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7519
Figure 1. Architecture of repository application
2. LITERATURE REVIEW
A concise background study was done to understand about MVC architecture and Angularjs framework. This helped to
know the best solutions for development of application using MVC architecture and Angularjs framework. Each approach
follows different methodology. Extracts from a couple of the papers/journals are as follows.
With the rapid changes that occur in the area of Web technologies, the porting and adaptation of existingWebapplications
into new platforms that take advantage of modern technologies has become an issue of increasing importance[1][2]. A
reengineering framework provided to TransformLegacyWebapplicationstotheMVC Architectureand enabledfor theJava™2
Platform, Enterprise Edition (J2EE).
Diana M.Selfa et.al. proposed a database and web applicationbasedonMVCarchitecturewhichhashadwideacceptancefor
corporation software development. It plans to divide the system in three different layers that are inchargeofinterfacecontrol
logic and data access, this facilitates the maintenance and evolution of systems according to the independence of the present
classes in each layer[3].
Rich Internet Applications (RIA) have been proposed as a response to growing user needs. RIA is based on the MVC and
Model driven architecture[4].
The following are the some of the advantages of the MVC architecture, 1) MVC provides parallel and rapid development of
the application. One programmer can work on the view while the other programmer working on the controller to crate
business logic of the application hence it is faster than the other design pattern.2)One cancreatethemultipleviewtothesame
model with minimum code duplication because it separates the data and business logic from the display. 3) There are more
changes to the UI as compared to the business rules as time passes. View changes made without affecting the Model or entire
application. 4) It returns the data without formatting. 5) It supports SEO friendly Development platform.
3. METHODOLOGY
The following steps form the methodology,
1. Create a back end database for customer’s details,equipmentdetails,sales,Usersdetails,productsdetails,salesorders,and
metadata tables using MySQL. Site of the data is loaded by running the PowerShell Script.
2. Develop application based on the ASP.NET MVC architecture where it has 3 parts:
a. Model: It maintains application data and business logic
b. View: It is a user interface, which displays data to the user and allow the modification of the data. It is to be
created using HTML and Angularjs
c. Controller: It handles the request from the users.
3. Build and Publish ASP.NET code and deploy it on the IIS (Internet Information Services) Manager.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7520
A. EXPERIMENTAL SETUP
Broadly, the files are divided into two parts, one that consists oftheC#filesandthe secondpartincludestheAngularJS and
HTML files. The file structure is shown in the Figure 2.
App_Data: This folder contains application data files like LocalDB and xml files etc.IISneverservesthesefiles. App_start: This
files executed when the application starts. These are configuration files. Content: The folder contains static files like CSS, icon
and images files etc. Controllers: This folder contains class files of controller, which handles the request from the user and
returns response back to the user. Fonts folder: This contains all the costume font files of the application Model: This older
contains the class files which includes public properties used by the application to hold and manipulate the data. Script: The
folder contains .js files of the application. Views: This contains the html files of theapplicationtheviewfileis.cshtml filewhere
we can write html code. .Golbal.asax: This file allows writing the code that runs in the responsetotheapplicationlevel events.
Packages.config: This folder managed by the Nugent tokeeptrack ofthepackagesare installedalongwiththeirversionsinthe
application. Web.config: This file contains the configuration files at application level
Figure 2. File Organization of InstallBase application.
B. EVALUATION METRIC
The performance of the application depends on the quality of data entered by the user in case of a search. Partially correct
inputs are accepted while filtering the data as Angular JS make a provision for this. In case there are any spelling errors in the
input the application will fail to fetch the results. To avoid spelling errors application is provided with the dropdown for the
each input. . In case of right inputs the results are 100% accurate. The time taken to fetch the results or display any changes
made is less that one second.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7521
4. RESULTS AND OBSERVATIONS
MVC architecture provide accurate results within a shortduration.Developmentof theMVCapplicationisfaster.AngularJS
is helpful in retrieving results even with partial inputs. A constant Internet connection is needed for extending Angular JS and
Bootstrap scripts. In case it is not available the view will not have the enhanced user appeal.
5. CONCLUSION AND FUTURE WORKS
The main aim of developing the single application to serve the needs of sales team, service and implementation team and
the customer is achieved by developing the repository application using .NET MVC framework and Angularjs. With detailed
visibility of data in the application, sales of interoperability enabling platform can be increased.
For future work, we try to include metadata architecture to provide ease of use, maintainability, supportability and zero
downtime. Metadata driven architecture makes the UI Customizable.
REFERENCES
[1] N. Jain, P. Mangal, and D. Mehta, “AngularJS: A modern MVC framework in JavaScript,” J. Global ResearchinComputer
Science, vol. 5, no. 12, 2015, pp. 17-23.
[2] Yu Ping Kostas Kontogiannis Terence C. Lau, “Transforming LegacyWebApplications to theMVCArchitecture”,Dept.
of Electrical & Computer Engineering University of Waterloo Waterloo, ON. Canada.
[3] Diana M. Selfa, Maya Carrillo, Ma. del Rocío Boone, “A Database and Web Application Based on MVC Architecture” ,
Benemérita Universidad Autónoma de Puebla 14 Sur y Av.San Claudio, Edif. 135, Ciuda Universitaria.
[4] Lay-Ki Soon, Sang Ho Lee, Enhancing URL NormalizationusingMetadata of WebPages,inInternational Conference on
Computer and Electrical Engineering, 2008.
[5] Voon Yang Nen, Onn Ching Ann, Pigeon-Table: AQuick Prototyping Tool using Twitter Bootstrap and Angular JS for
Data-Driven Web Application Development, IEEE, 2017.
[6] Runsha Dong, Fei Su, Shan Yang, Lexi Xu, Xinzhou Cheng, Weiwei Chen, Design and Application on Metadata
Management for Information Supply Chain, IEEE, 2016.
[7] LIU Yuan-jie, HUANG Ting-lei, WANG Xin, Research and Application of Metadata in Information Management, IEEE,
2010.
[8] Aryo Pinandito, Hanifah Muslimah Az-zahra, Lutfi Fanani, Anggi Valeria Putri, Analysis of Web Content Delivery
Effectiveness and Efficiency in Responsive Web Design Using Material Design Guidelines andUserCenteredDesignin
International Conference on Sustainable Information Engineering and Technology, IEEE, 2017.

More Related Content

What's hot

A unified dashboard for collaborative robot management system
A unified dashboard for collaborative robot management systemA unified dashboard for collaborative robot management system
A unified dashboard for collaborative robot management system
Conference Papers
 
Human Resource Management using Phone Gap
Human Resource Management using Phone GapHuman Resource Management using Phone Gap
Human Resource Management using Phone Gap
IRJET Journal
 
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEMARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
ijfcstjournal
 
IEEE JAVA .NET Project titles
IEEE JAVA .NET Project titlesIEEE JAVA .NET Project titles
IEEE JAVA .NET Project titles
I3E Technologies
 
CustomerCopy
CustomerCopyCustomerCopy
CustomerCopy
mohit behl
 
AP2K: An Autonomous Suggestive Solution for Service Industries
AP2K: An Autonomous Suggestive Solution for Service IndustriesAP2K: An Autonomous Suggestive Solution for Service Industries
AP2K: An Autonomous Suggestive Solution for Service Industries
IRJET Journal
 
Sample Capstone Projects from 2005
Sample Capstone Projects from 2005Sample Capstone Projects from 2005
Sample Capstone Projects from 2005
butest
 
Super convergence of autonomous things
Super convergence of autonomous thingsSuper convergence of autonomous things
Super convergence of autonomous things
Conference Papers
 
CAST for Oracle Applications
CAST for Oracle ApplicationsCAST for Oracle Applications
CAST for Oracle Applications
CAST
 
Healthcare software service provider - Silver Touch
Healthcare software service provider - Silver TouchHealthcare software service provider - Silver Touch
Healthcare software service provider - Silver Touch
SAP Silver Touch
 
Enterprise Application Integration
Enterprise Application IntegrationEnterprise Application Integration
Enterprise Application Integration
university of education,Lahore
 
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
Edureka!
 
IRJET- Enhanced Mobile Application for Training and Placement Cell
IRJET- Enhanced Mobile Application for Training and Placement CellIRJET- Enhanced Mobile Application for Training and Placement Cell
IRJET- Enhanced Mobile Application for Training and Placement Cell
IRJET Journal
 
Microsoft connectivity analyzer (mca) autodiscover troubleshooting tools pa...
Microsoft connectivity analyzer (mca)  autodiscover troubleshooting tools  pa...Microsoft connectivity analyzer (mca)  autodiscover troubleshooting tools  pa...
Microsoft connectivity analyzer (mca) autodiscover troubleshooting tools pa...
Eyal Doron
 
Cobot fleet management system using cloud and edge computing bukhary
Cobot fleet management system using cloud and edge computing bukharyCobot fleet management system using cloud and edge computing bukhary
Cobot fleet management system using cloud and edge computing bukhary
Conference Papers
 
Api pro 2017
Api pro 2017Api pro 2017
Api pro 2017
Peter Schwoerer
 
IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using SeleniumIRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET Journal
 
Management in Informatica Power Center
Management in Informatica Power CenterManagement in Informatica Power Center
Management in Informatica Power Center
Edureka!
 
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
RapidValue
 

What's hot (19)

A unified dashboard for collaborative robot management system
A unified dashboard for collaborative robot management systemA unified dashboard for collaborative robot management system
A unified dashboard for collaborative robot management system
 
Human Resource Management using Phone Gap
Human Resource Management using Phone GapHuman Resource Management using Phone Gap
Human Resource Management using Phone Gap
 
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEMARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
ARCHITECTURAL FRAMEWORK FOR DEVELOPING COMPONENT BASED GIS SYSTEM
 
IEEE JAVA .NET Project titles
IEEE JAVA .NET Project titlesIEEE JAVA .NET Project titles
IEEE JAVA .NET Project titles
 
CustomerCopy
CustomerCopyCustomerCopy
CustomerCopy
 
AP2K: An Autonomous Suggestive Solution for Service Industries
AP2K: An Autonomous Suggestive Solution for Service IndustriesAP2K: An Autonomous Suggestive Solution for Service Industries
AP2K: An Autonomous Suggestive Solution for Service Industries
 
Sample Capstone Projects from 2005
Sample Capstone Projects from 2005Sample Capstone Projects from 2005
Sample Capstone Projects from 2005
 
Super convergence of autonomous things
Super convergence of autonomous thingsSuper convergence of autonomous things
Super convergence of autonomous things
 
CAST for Oracle Applications
CAST for Oracle ApplicationsCAST for Oracle Applications
CAST for Oracle Applications
 
Healthcare software service provider - Silver Touch
Healthcare software service provider - Silver TouchHealthcare software service provider - Silver Touch
Healthcare software service provider - Silver Touch
 
Enterprise Application Integration
Enterprise Application IntegrationEnterprise Application Integration
Enterprise Application Integration
 
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
 
IRJET- Enhanced Mobile Application for Training and Placement Cell
IRJET- Enhanced Mobile Application for Training and Placement CellIRJET- Enhanced Mobile Application for Training and Placement Cell
IRJET- Enhanced Mobile Application for Training and Placement Cell
 
Microsoft connectivity analyzer (mca) autodiscover troubleshooting tools pa...
Microsoft connectivity analyzer (mca)  autodiscover troubleshooting tools  pa...Microsoft connectivity analyzer (mca)  autodiscover troubleshooting tools  pa...
Microsoft connectivity analyzer (mca) autodiscover troubleshooting tools pa...
 
Cobot fleet management system using cloud and edge computing bukhary
Cobot fleet management system using cloud and edge computing bukharyCobot fleet management system using cloud and edge computing bukhary
Cobot fleet management system using cloud and edge computing bukhary
 
Api pro 2017
Api pro 2017Api pro 2017
Api pro 2017
 
IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using SeleniumIRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
IRJET- An Efficient Automation Framework for Testing ITS Solution using Selenium
 
Management in Informatica Power Center
Management in Informatica Power CenterManagement in Informatica Power Center
Management in Informatica Power Center
 
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
How Oracle MAF & Oracle Mobile Cloud can Accelerate Mobile App Development - ...
 

Similar to IRJET- A Repository Application Developed using .Net MVC and Angularjs for Interoperability Enabling Platform Sales Improvement in Healthcare Industry

IRJET- Restful Backend to Serve any Frontend System
IRJET- Restful Backend to Serve any Frontend SystemIRJET- Restful Backend to Serve any Frontend System
IRJET- Restful Backend to Serve any Frontend System
IRJET Journal
 
Backend for Frontend in Microservices
Backend for Frontend in MicroservicesBackend for Frontend in Microservices
Backend for Frontend in Microservices
IRJET Journal
 
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
IRJET Journal
 
IRJET-Stock Management System
IRJET-Stock Management SystemIRJET-Stock Management System
IRJET-Stock Management System
IRJET Journal
 
A study of mvc – a software design pattern for web application development
A study of mvc – a software design pattern for web application developmentA study of mvc – a software design pattern for web application development
A study of mvc – a software design pattern for web application development
IAEME Publication
 
IRJET - College Event Management System
IRJET - College Event Management SystemIRJET - College Event Management System
IRJET - College Event Management System
IRJET Journal
 
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
AM Publications
 
IRJET - Application Development Approach to Transform Traditional Web Applica...
IRJET - Application Development Approach to Transform Traditional Web Applica...IRJET - Application Development Approach to Transform Traditional Web Applica...
IRJET - Application Development Approach to Transform Traditional Web Applica...
IRJET Journal
 
Supply Chain Management with Eco System
Supply Chain Management with Eco SystemSupply Chain Management with Eco System
Supply Chain Management with Eco System
IRJET Journal
 
ONLINE NOTICE AND REPORT GENERATOR PLATFORM
ONLINE NOTICE AND REPORT GENERATOR PLATFORMONLINE NOTICE AND REPORT GENERATOR PLATFORM
ONLINE NOTICE AND REPORT GENERATOR PLATFORM
IRJET Journal
 
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET Journal
 
Business Utility Application
Business Utility ApplicationBusiness Utility Application
Business Utility Application
IRJET Journal
 
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge EngineeringIRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET Journal
 
MEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House ApplicationMEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House Application
IRJET Journal
 
IRJET- In-House File Tracking System
IRJET-  	  In-House File Tracking SystemIRJET-  	  In-House File Tracking System
IRJET- In-House File Tracking System
IRJET Journal
 
IRJET- Implementation of Business Ease Android Application for Akhil Bhar...
IRJET-  	  Implementation of Business Ease Android Application for Akhil Bhar...IRJET-  	  Implementation of Business Ease Android Application for Akhil Bhar...
IRJET- Implementation of Business Ease Android Application for Akhil Bhar...
IRJET Journal
 
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
IRJET Journal
 
IRJET- Application Backup and Restore across Multiple Devices
IRJET-	 Application Backup and Restore across Multiple DevicesIRJET-	 Application Backup and Restore across Multiple Devices
IRJET- Application Backup and Restore across Multiple Devices
IRJET Journal
 
IRJET- Performance Analysis of Store Inventory Management (SIM) an Enterp...
IRJET-  	  Performance Analysis of Store Inventory Management (SIM) an Enterp...IRJET-  	  Performance Analysis of Store Inventory Management (SIM) an Enterp...
IRJET- Performance Analysis of Store Inventory Management (SIM) an Enterp...
IRJET Journal
 
IRJET- Placement Portal
IRJET- Placement PortalIRJET- Placement Portal
IRJET- Placement Portal
IRJET Journal
 

Similar to IRJET- A Repository Application Developed using .Net MVC and Angularjs for Interoperability Enabling Platform Sales Improvement in Healthcare Industry (20)

IRJET- Restful Backend to Serve any Frontend System
IRJET- Restful Backend to Serve any Frontend SystemIRJET- Restful Backend to Serve any Frontend System
IRJET- Restful Backend to Serve any Frontend System
 
Backend for Frontend in Microservices
Backend for Frontend in MicroservicesBackend for Frontend in Microservices
Backend for Frontend in Microservices
 
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
IRJET- An Sla-Aware Cloud Coalition Formation Approach for Virtualized Networks.
 
IRJET-Stock Management System
IRJET-Stock Management SystemIRJET-Stock Management System
IRJET-Stock Management System
 
A study of mvc – a software design pattern for web application development
A study of mvc – a software design pattern for web application developmentA study of mvc – a software design pattern for web application development
A study of mvc – a software design pattern for web application development
 
IRJET - College Event Management System
IRJET - College Event Management SystemIRJET - College Event Management System
IRJET - College Event Management System
 
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
DESIGN PATTERNS IN THE WORKFLOW IMPLEMENTATION OF MARINE RESEARCH GENERAL INF...
 
IRJET - Application Development Approach to Transform Traditional Web Applica...
IRJET - Application Development Approach to Transform Traditional Web Applica...IRJET - Application Development Approach to Transform Traditional Web Applica...
IRJET - Application Development Approach to Transform Traditional Web Applica...
 
Supply Chain Management with Eco System
Supply Chain Management with Eco SystemSupply Chain Management with Eco System
Supply Chain Management with Eco System
 
ONLINE NOTICE AND REPORT GENERATOR PLATFORM
ONLINE NOTICE AND REPORT GENERATOR PLATFORMONLINE NOTICE AND REPORT GENERATOR PLATFORM
ONLINE NOTICE AND REPORT GENERATOR PLATFORM
 
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
IRJET- Enabling Identity-Based Integrity Auditing and Data Sharing with Sensi...
 
Business Utility Application
Business Utility ApplicationBusiness Utility Application
Business Utility Application
 
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge EngineeringIRJET- Logistics Network Superintendence Based on Knowledge Engineering
IRJET- Logistics Network Superintendence Based on Knowledge Engineering
 
MEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House ApplicationMEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House Application
 
IRJET- In-House File Tracking System
IRJET-  	  In-House File Tracking SystemIRJET-  	  In-House File Tracking System
IRJET- In-House File Tracking System
 
IRJET- Implementation of Business Ease Android Application for Akhil Bhar...
IRJET-  	  Implementation of Business Ease Android Application for Akhil Bhar...IRJET-  	  Implementation of Business Ease Android Application for Akhil Bhar...
IRJET- Implementation of Business Ease Android Application for Akhil Bhar...
 
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
Secure Storage Auditing with Efficient Key Update for Cognitive Industrial IO...
 
IRJET- Application Backup and Restore across Multiple Devices
IRJET-	 Application Backup and Restore across Multiple DevicesIRJET-	 Application Backup and Restore across Multiple Devices
IRJET- Application Backup and Restore across Multiple Devices
 
IRJET- Performance Analysis of Store Inventory Management (SIM) an Enterp...
IRJET-  	  Performance Analysis of Store Inventory Management (SIM) an Enterp...IRJET-  	  Performance Analysis of Store Inventory Management (SIM) an Enterp...
IRJET- Performance Analysis of Store Inventory Management (SIM) an Enterp...
 
IRJET- Placement Portal
IRJET- Placement PortalIRJET- Placement Portal
IRJET- Placement Portal
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
21UME003TUSHARDEB
 
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUESAN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
drshikhapandey2022
 
Open Channel Flow: fluid flow with a free surface
Open Channel Flow: fluid flow with a free surfaceOpen Channel Flow: fluid flow with a free surface
Open Channel Flow: fluid flow with a free surface
Indrajeet sahu
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
upoux
 
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptxEV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
nikshimanasa
 
Height and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdfHeight and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdf
q30122000
 
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICSUNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
vmspraneeth
 
AI in customer support Use cases solutions development and implementation.pdf
AI in customer support Use cases solutions development and implementation.pdfAI in customer support Use cases solutions development and implementation.pdf
AI in customer support Use cases solutions development and implementation.pdf
mahaffeycheryld
 
openshift technical overview - Flow of openshift containerisatoin
openshift technical overview - Flow of openshift containerisatoinopenshift technical overview - Flow of openshift containerisatoin
openshift technical overview - Flow of openshift containerisatoin
snaprevwdev
 
Levelised Cost of Hydrogen (LCOH) Calculator Manual
Levelised Cost of Hydrogen  (LCOH) Calculator ManualLevelised Cost of Hydrogen  (LCOH) Calculator Manual
Levelised Cost of Hydrogen (LCOH) Calculator Manual
Massimo Talia
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
VANDANAMOHANGOUDA
 
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdfSELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
Pallavi Sharma
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
uqyfuc
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
PriyankaKilaniya
 
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
ijseajournal
 
Butterfly Valves Manufacturer (LBF Series).pdf
Butterfly Valves Manufacturer (LBF Series).pdfButterfly Valves Manufacturer (LBF Series).pdf
Butterfly Valves Manufacturer (LBF Series).pdf
Lubi Valves
 
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptxSENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
b0754201
 
Blood finder application project report (1).pdf
Blood finder application project report (1).pdfBlood finder application project report (1).pdf
Blood finder application project report (1).pdf
Kamal Acharya
 
This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...
DharmaBanothu
 
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls ChennaiCall Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
paraasingh12 #V08
 

Recently uploaded (20)

Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
 
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUESAN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
 
Open Channel Flow: fluid flow with a free surface
Open Channel Flow: fluid flow with a free surfaceOpen Channel Flow: fluid flow with a free surface
Open Channel Flow: fluid flow with a free surface
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
 
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptxEV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
EV BMS WITH CHARGE MONITOR AND FIRE DETECTION.pptx
 
Height and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdfHeight and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdf
 
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICSUNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
 
AI in customer support Use cases solutions development and implementation.pdf
AI in customer support Use cases solutions development and implementation.pdfAI in customer support Use cases solutions development and implementation.pdf
AI in customer support Use cases solutions development and implementation.pdf
 
openshift technical overview - Flow of openshift containerisatoin
openshift technical overview - Flow of openshift containerisatoinopenshift technical overview - Flow of openshift containerisatoin
openshift technical overview - Flow of openshift containerisatoin
 
Levelised Cost of Hydrogen (LCOH) Calculator Manual
Levelised Cost of Hydrogen  (LCOH) Calculator ManualLevelised Cost of Hydrogen  (LCOH) Calculator Manual
Levelised Cost of Hydrogen (LCOH) Calculator Manual
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
 
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdfSELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
 
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
 
Butterfly Valves Manufacturer (LBF Series).pdf
Butterfly Valves Manufacturer (LBF Series).pdfButterfly Valves Manufacturer (LBF Series).pdf
Butterfly Valves Manufacturer (LBF Series).pdf
 
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptxSENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
 
Blood finder application project report (1).pdf
Blood finder application project report (1).pdfBlood finder application project report (1).pdf
Blood finder application project report (1).pdf
 
This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...
 
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls ChennaiCall Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
 

IRJET- A Repository Application Developed using .Net MVC and Angularjs for Interoperability Enabling Platform Sales Improvement in Healthcare Industry

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7518 A Repository Application Developed using .NET MVC and Angularjs for Interoperability Enabling Platform Sales Improvement in Healthcare Industry Jnaneshwari Math1 and Dr. Shobha G2 Department of Computer Science and Engineering, Rashtreeya Vidyalaya College of Engineering, Bangalore, Karnataka, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Healthcare Industry provides healthcare products and solutions for diagnostic, treatment, and preventive care. Interoperability between these products and solutions becomes the biggest challenge in the healthcare industry because of their different architectures. The success of interoperability enabling platform depends on the customer satisfaction, support and services by the vendors or organization, finding the opportunity in improving the sales. This is achieved with the visibility or analysis of the available data. There is need for a single application, which stores all the information and serves needs of the internal customer (other business units), sales team and financial team, implantation and service team, support team. 1. INTRODUCTION Healthcare Industry provides healthcare solutions for diagnostic, treatment, and preventive care. In healthcare, interoperability is ability to make the healthcare products and solutions to communicate and exchange the data. Interoperability becomes the biggest challenges in the healthcare industry because the different systems have the different architecture and infrastructure. The various software are present in the industry that provides standards-based point of interoperability, which enables interoperability between solutions and reduces the complexity and the cost in the healthcare environment. Such interoperability-enabling platform isinstalledonthethousandsof thehospitalswhowantsinteroperability feature between the devices. These support hundreds of product lines hence it is verydifficulttotrack,rememberthesitesand products installed on the sites. There is need for a single application, which stores all the information and serves needs of the internal customer (other business units), sales team and financial team, implantation and service team, support team. An application developed that keeps a record of the detailed information of the customers, the products with its configuration and settings. With visibility provided by application into ‘what the customer has’, implementation and services team has ability to plan their effort more efficiently and deliver the services with minimal efforts and allows reuse of assets already available in the customer environment. It allows faster troubleshooting of the product issues reported by customer. Repository application is developed using .NET MVC Frame Work and Angularjs A. ARCHITECTURE OF REPOSITORY APPLCATION The architecture of Repository applicationisshownintheFigure.1.Theoverall systemarchitectureconsistsof threelayers. The first user interface layer made of Angular JS and HTML to interact with the user. The second intermediate layer consisting of the java classes, which handles the interaction between the user and the database. The third layer is the SQL database that holds all data for the application. The second layer consists of four layers (Model, View, Controller class) for better performance. As seen in Figure.1 the user sends the requests (POST, PUT, GET, DELETE) to the front end, which will pass it on to the middle layer where depending on the type of request, made thecorrespondingfunctioniscalled.TheController, whichisa part of the middle layer, makes a request to the database (MySQL) and the fetched result will traverse back to the user in the same direction. Database contains the three types of data product related data, sales data and the configuration files.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7519 Figure 1. Architecture of repository application 2. LITERATURE REVIEW A concise background study was done to understand about MVC architecture and Angularjs framework. This helped to know the best solutions for development of application using MVC architecture and Angularjs framework. Each approach follows different methodology. Extracts from a couple of the papers/journals are as follows. With the rapid changes that occur in the area of Web technologies, the porting and adaptation of existingWebapplications into new platforms that take advantage of modern technologies has become an issue of increasing importance[1][2]. A reengineering framework provided to TransformLegacyWebapplicationstotheMVC Architectureand enabledfor theJava™2 Platform, Enterprise Edition (J2EE). Diana M.Selfa et.al. proposed a database and web applicationbasedonMVCarchitecturewhichhashadwideacceptancefor corporation software development. It plans to divide the system in three different layers that are inchargeofinterfacecontrol logic and data access, this facilitates the maintenance and evolution of systems according to the independence of the present classes in each layer[3]. Rich Internet Applications (RIA) have been proposed as a response to growing user needs. RIA is based on the MVC and Model driven architecture[4]. The following are the some of the advantages of the MVC architecture, 1) MVC provides parallel and rapid development of the application. One programmer can work on the view while the other programmer working on the controller to crate business logic of the application hence it is faster than the other design pattern.2)One cancreatethemultipleviewtothesame model with minimum code duplication because it separates the data and business logic from the display. 3) There are more changes to the UI as compared to the business rules as time passes. View changes made without affecting the Model or entire application. 4) It returns the data without formatting. 5) It supports SEO friendly Development platform. 3. METHODOLOGY The following steps form the methodology, 1. Create a back end database for customer’s details,equipmentdetails,sales,Usersdetails,productsdetails,salesorders,and metadata tables using MySQL. Site of the data is loaded by running the PowerShell Script. 2. Develop application based on the ASP.NET MVC architecture where it has 3 parts: a. Model: It maintains application data and business logic b. View: It is a user interface, which displays data to the user and allow the modification of the data. It is to be created using HTML and Angularjs c. Controller: It handles the request from the users. 3. Build and Publish ASP.NET code and deploy it on the IIS (Internet Information Services) Manager.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7520 A. EXPERIMENTAL SETUP Broadly, the files are divided into two parts, one that consists oftheC#filesandthe secondpartincludestheAngularJS and HTML files. The file structure is shown in the Figure 2. App_Data: This folder contains application data files like LocalDB and xml files etc.IISneverservesthesefiles. App_start: This files executed when the application starts. These are configuration files. Content: The folder contains static files like CSS, icon and images files etc. Controllers: This folder contains class files of controller, which handles the request from the user and returns response back to the user. Fonts folder: This contains all the costume font files of the application Model: This older contains the class files which includes public properties used by the application to hold and manipulate the data. Script: The folder contains .js files of the application. Views: This contains the html files of theapplicationtheviewfileis.cshtml filewhere we can write html code. .Golbal.asax: This file allows writing the code that runs in the responsetotheapplicationlevel events. Packages.config: This folder managed by the Nugent tokeeptrack ofthepackagesare installedalongwiththeirversionsinthe application. Web.config: This file contains the configuration files at application level Figure 2. File Organization of InstallBase application. B. EVALUATION METRIC The performance of the application depends on the quality of data entered by the user in case of a search. Partially correct inputs are accepted while filtering the data as Angular JS make a provision for this. In case there are any spelling errors in the input the application will fail to fetch the results. To avoid spelling errors application is provided with the dropdown for the each input. . In case of right inputs the results are 100% accurate. The time taken to fetch the results or display any changes made is less that one second.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 7521 4. RESULTS AND OBSERVATIONS MVC architecture provide accurate results within a shortduration.Developmentof theMVCapplicationisfaster.AngularJS is helpful in retrieving results even with partial inputs. A constant Internet connection is needed for extending Angular JS and Bootstrap scripts. In case it is not available the view will not have the enhanced user appeal. 5. CONCLUSION AND FUTURE WORKS The main aim of developing the single application to serve the needs of sales team, service and implementation team and the customer is achieved by developing the repository application using .NET MVC framework and Angularjs. With detailed visibility of data in the application, sales of interoperability enabling platform can be increased. For future work, we try to include metadata architecture to provide ease of use, maintainability, supportability and zero downtime. Metadata driven architecture makes the UI Customizable. REFERENCES [1] N. Jain, P. Mangal, and D. Mehta, “AngularJS: A modern MVC framework in JavaScript,” J. Global ResearchinComputer Science, vol. 5, no. 12, 2015, pp. 17-23. [2] Yu Ping Kostas Kontogiannis Terence C. Lau, “Transforming LegacyWebApplications to theMVCArchitecture”,Dept. of Electrical & Computer Engineering University of Waterloo Waterloo, ON. Canada. [3] Diana M. Selfa, Maya Carrillo, Ma. del Rocío Boone, “A Database and Web Application Based on MVC Architecture” , Benemérita Universidad Autónoma de Puebla 14 Sur y Av.San Claudio, Edif. 135, Ciuda Universitaria. [4] Lay-Ki Soon, Sang Ho Lee, Enhancing URL NormalizationusingMetadata of WebPages,inInternational Conference on Computer and Electrical Engineering, 2008. [5] Voon Yang Nen, Onn Ching Ann, Pigeon-Table: AQuick Prototyping Tool using Twitter Bootstrap and Angular JS for Data-Driven Web Application Development, IEEE, 2017. [6] Runsha Dong, Fei Su, Shan Yang, Lexi Xu, Xinzhou Cheng, Weiwei Chen, Design and Application on Metadata Management for Information Supply Chain, IEEE, 2016. [7] LIU Yuan-jie, HUANG Ting-lei, WANG Xin, Research and Application of Metadata in Information Management, IEEE, 2010. [8] Aryo Pinandito, Hanifah Muslimah Az-zahra, Lutfi Fanani, Anggi Valeria Putri, Analysis of Web Content Delivery Effectiveness and Efficiency in Responsive Web Design Using Material Design Guidelines andUserCenteredDesignin International Conference on Sustainable Information Engineering and Technology, IEEE, 2017.