Advertisement
Guest User

Untitled

a guest
Feb 6th, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2. using EnterpriseSample.Dao;
  3. using NHibernate;
  4.  
  5. namespace EnterpriseSample
  6. {
  7.     public class LocationDao : GenericDao<Location>, ILocationDao
  8.     {
  9.         public LocationDao(Func<ISession> session) : base(session)
  10.         {
  11.         }
  12.  
  13.         public void Dosomething()
  14.         {
  15.            
  16.         }
  17.  
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement