Questions tagged [prodinner]

ProDinner is an ASP.NET MVC sample application, it uses EF4 Code First for Data Access, SOLID principles, jQuery and ASP.net MVC Awesome for Web UI, it has Multi-language User Interface.

Features:

  • CRUD and search operations for entities
  • very rich and responsive UI (using ASP.net MVC Awesome jQuery Ajax Helpers)
  • upload and crop Images for meals (using Jcrop)
  • mapping entities <-> viewmodels (using ValueInjecter)
  • Multi-Language User Interface
  • N-Tier Architecture
  • Security using Forms Authentication
  • pagination using "more results" button
  • Multiple UI themes (using jQuery UI themes)
  • Unobtrusive Client Side Validation using jQuery.Validate
  • Nice validation messages using just CSS
5 questions
2
votes
1 answer

using ProDinner as reference architecture

I have been looking at the Pro Dinner solution as a reference for a project I am working on and I think its largely suitable.. but I don't quite get the project structure.. from what I can see you would have three objects that would represent a…
Steoates
  • 3,058
  • 5
  • 27
  • 43
1
vote
1 answer

Prodinner service layer repositories

I have been looking at the Prodinner sample on CodePlex to use as an example for my app and specifically like the idea of the ICrudService but how does this work with transactions and context sharing? Is the IoC just providing a single request scope…
Ryan
  • 4,354
  • 2
  • 42
  • 78
1
vote
1 answer

Using ProDinner w/ areas

Has any had any success using ProDinner but by placing the Controllers in Areas? I tried and the Windsor IoC is not liking it. I have not had any success finding info as to how to adjust ProDinner's Windsor Factory container configuration for Areas…
aaa
  • 184
  • 12
1
vote
1 answer

convert int[] to Entities using Value Injecter

In the "ProDinner" project, ValueInjecter is used for mapping.I use the newest version, which replace ConventionInjection with LoopInjection when convert between entities and int[],I have got the code of EntitiesToInts class: public class…
darrenji
  • 75
  • 1
  • 5
0
votes
1 answer

Trying to Extend ProDinner Chef class with collection of Phone Numbers

I am trying to extend ProDinner by adding phone numbers to Chef. ChefInput view model: public class ChefInput :Input { public string Name { get; set; } public ChefInput() { PhoneNumberInputs = new List(){ …
Joe Grasso
  • 465
  • 2
  • 5
  • 19