Click here to Skip to main content
15,881,715 members
Articles / Web Development / HTML

Integrating Spring.NET with ASP.NET Web Site

Rate me:
Please Sign up or sign in to vote.
4.86/5 (51 votes)
27 Jan 2008CPOL5 min read 154.5K   2.2K   98  
This article describes how to integrate Spring.NET enterprise Framework with ASP.NET
using System;
using System.Collections.Generic;
using System.Collections;

namespace CodeProject.DAO
{
    public interface IBaseDAO<EntityT, idT>
    {
        IList LoadAll();
        EntityT LoadByID(idT id);
        IList Load(string hsqlQuery, object[] values);
        void Save(EntityT fine);
        void SaveOrUpdate(EntityT fine);
        NHibernate.ISessionFactory SessionFactory { 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
Software Developer Microsoft
United States United States
Have completed BSc in Computer Science & Engineering from Shah Jalal University of Science & Technology, Sylhet, Bangladesh (SUST).

Story books (specially Masud Rana series), tourism, songs and programming is most favorite.

Blog:
Maruf Notes
http://blog.kuashaonline.com

Comments and Discussions