7
MOBITECH – ONLINE MOBILE STORE

ASP.NET MVC4 Web application

Embed Size (px)

Citation preview

Page 1: ASP.NET MVC4 Web application

MOBITECH – ONLINE MOBILE STORE

Page 2: ASP.NET MVC4 Web application

ARCHITECTURETECHNOLOGY – ASP.NET MVC4

External Systems

Secu

rity –L

ogin

with

sal

ted

pass

wor

d

Mem

cach

ed s

truct

ures

Com

mun

icat

ion

Cro

ss-Cut

ting

Service ConsumersMobitech Users

HTML 5/CSS/JQUERY

ASP.NET MVC VIEW RAZOR

ENGINEPre

sent

atio

nLa

yer

Mobile specifications serviceS

ervi

ces

Laye

r

Mobile search service

Business Logic View ModelBusiness

Components

Bus

ines

sLa

yer

CO

NTR

OLL

ER

Database Model classes

Entity FrameworkD

ata

Laye

r

Data Helpers / Utilities

Mobile Type details service

SQL SERVER

2012 shard

SQL SERVER

2012 shard

Page 3: ASP.NET MVC4 Web application

SERVICES• Search service – Implemented as REST service

using ASP.NET Web API• This service exposes methods which return set of mobile phone devices (Output) based

on the search text given (input). • For example, if the user of the service inputs the text ‘Samsung’, all mobile phones with

the make ‘Samsung’ would be listed and returned.

• Accounts and Rewards service – Implemented using SOAP using ASP.NET WCF

• The Membership service provides users with information on reward points earned by that particular user and based on these points the users can avail gifts/discounts.

• Analytics service– Implemented using SOAP using ASP.NET WCF

• This service exposes methods that logs statistics like search counts for each mobile phone device and what feature selections routed search to the mobile phone devices.

Page 4: ASP.NET MVC4 Web application

Search page• The mobile phone search page features AJAX with Jquery

framework to provide quick and responsive search

Page 5: ASP.NET MVC4 Web application

Accounts and Rewards service

Page 6: ASP.NET MVC4 Web application

Analytics and Statistics service

Page 7: ASP.NET MVC4 Web application