CarbonFitness.BusinessLogic.Bootstrapper.InitDatalayer C# (CSharp) Method

InitDatalayer() public method

public InitDatalayer ( ) : void
return void
        public void InitDatalayer()
        {
            InitDatalayer(new SimpleSessionStorage());
        }

Same methods

Bootstrapper::InitDatalayer ( ISessionStorage sessionStorage ) : void

Usage Example

 private IBootStrapper getBootStrapper(string nhibernateConfiguration)
 {
     if (bootstrapper == null) {
         bootstrapper = new Bootstrapper(nhibernateConfiguration);
         bootstrapper.InitDatalayer();
     }
     return bootstrapper;
 }
All Usage Examples Of CarbonFitness.BusinessLogic.Bootstrapper::InitDatalayer