-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f18b3b2
commit f80e2fe
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
Architecture | ||
|
||
- ASP.NET MVC | ||
|
||
--Prototype(without UnitOfWork) (1st phase) | ||
|
||
---Solution (included ASP.NET,EntityFramework) | ||
|
||
|
||
|
||
|
||
|
||
|
||
MODEL Relationships | ||
|
||
- Trip has Ids, many routes, DateTime StartDate, DateTime EndDate, Duration? | ||
- User has personalInfo(Age,Gender,Email,Password,UserType[single,poweruser,admin]),many Interest | ||
- Map [like Google Maps()] FROM GOOGLE | ||
- Route has Id,many places, StartPoint, EndPoint, List <BetweenPoints> FROM GOOGLE | ||
- Place has Id, many Categories,City,PointedInMap,Rating,Comments?, OpenHours? FROM GOOGLE | ||
- Interest (is landmark,cafes,restaurant, shopping, beach,museum,historical points etc) \*checkbox on TripPlannerIndex enum | ||
|
||
\- | ||
|
||
\- | ||
|
||
Views | ||
|
||
- HomeIndex-> | ||
|
||
Header Contintional Rendering [if visitor is authenticated user/ADMIN, show MyTrips,MyProfile,otherwise Login,Register] | ||
|
||
HomeSlider with some pictures | ||
|
||
Description of using this app | ||
|
||
Plan subscription | ||
|
||
Button Start Planning ------> TripPlannerIndex | ||
|
||
` `Map | Filters| (PlaceRange?) | ||
|
||
` `(input)StartPoint (From)| (input)EndPoint (To)| (input) StartDate? | (input) EndDate? | Duration? | ||
|
||
` `Button Start the Plan | ||
|
||
` `px. Already Loaded Map, the user click the points(limit 5) on the map | ||
|
||
` `we bring all the available(low cost,faster,expert) routes of the points of user[later] | ||
|
||
` `we represent user the places of interest(etc museum,shops,cafes) | ||
|
||
` `User select his liked places, and we add them to a list (User Places),[only until user\* issue role requirements] | ||
|
||
` `the updated map with User Places is shown and the user finally saves the Trip[only for power users]. | ||
|
||
Footer Team Mates | ||
|
||
|
||
|
||
|
||
- UserController--->ProfileIndex -> Personal Information of user,User(CRUD) | ||
- MyTripsView ----->A table of userTrips(CRUD) | ||
- Admin(Area)------>Datatable users(CRUD),User Analytics(Diagrams) | ||
|
||
\- | ||
|
||
\- | ||
|
||
Controller |