views:

14

answers:

0

Hi Guys,

Inside a ASP.Net MVC 2.0 project I'm facing a few naming convention issues.

For display purposes I'm using a few object residing in my Model directory inside the MVC Web Project:

Object: CatalogView : Sort of wrapper object to group all objects I need for the catalog view (aspx)
--- ShoppingBagPartialView
--- IList Catalogs

Object: ShoppingBagPartialView : Wraps objects used inside the shoppingBagPartial (ascx)
--- IList CartItems

Object: OrderModelView
--- OrderCode
--- IList

In above list, Product / ShoppingCartItem / Catalog are objects existing in my DATA layer.

Can anyone point me out best practices for naming the display objects?

Thanks in advance! Bart