Click here to Skip to main content
15,885,366 members
Articles / NHibernate

Object Relational Mapping (ORM) using NHibernate - Part 7 of 8 Completing the Ecommerce Example

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
15 May 2013CPOL7 min read 28.1K   2.6K   17  
A full series of 8 part articles to show One-To-One, Many-To-One, Many-To-Many associations mapping using NHibernate, Using Collections With NHibernate, Inheritance Relationships Using NHibernate, Lazy Initializations/Fetches Using NHibernate.
using System;
using Iesi.Collections.Generic;

namespace ECommerceSystem.Domain
{
    class OrderNumberHelper
    {
        public static string GenerateOrderNumber()
        {
            // GetTodaysDate and make orderno from it
            //by concatenating orderno with it

            orderNo++;
            return ((DateTime.Now.ToShortDateString()).Replace("/","")+orderNo.ToString());
        }
        private static int orderNo;
    }
    public class Order
    {
        public Order() 
        {
            OrderNumber = OrderNumberHelper.GenerateOrderNumber();
            OrderItems = new HashedSet<Item>();
            NotAvailableItemDescriptions = new System.Collections.Generic.List<ProductDescription>();
        }
        public Order(bool is_fast_shipping)
        {
            OrderNumber = OrderNumberHelper.GenerateOrderNumber();
            OrderItems = new HashedSet<Item>();
            IsFastShipping = true;
            NotAvailableItemDescriptions = new System.Collections.Generic.List<ProductDescription>();
        }

        public virtual long OrderId { get; set; }

        public virtual string OrderNumber { get; set; }

        public virtual ISet<Item> OrderItems { get; set; }

        public virtual Customer OrderedByCustomer { get; set; }

        public virtual double ShippingCharges { get; set; }

        public virtual double OrderCost { get; set; }

        //Order page data

        public virtual bool IsFastShipping { get; set; }

        //Order page data

        public virtual bool IsGiftWrapped { get; set; }

        public virtual System.Collections.Generic.IList<ProductDescription> NotAvailableItemDescriptions { get; set; }
      
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
Software Developer developing in c#.net.

Comments and Discussions