Exemple #1
0
 /// <summary>
 /// Use this to point to entities that might be institution-specific.
 /// </summary>
 /// <param name="dao">The data access object. Set by calling <code>MyServiceLocator.GetInstance<ICoreDAO<T>>();</code></param>
 /// <param name="institutionCode"></param>
 protected CoreBaseLogic(ICoreDAO <T> dao, string institutionCode) : base(dao, institutionCode)
 {
 }
Exemple #2
0
 /// <summary>
 /// Use this to point to entities that are hosted centrally
 /// </summary>
 /// <param name="dao">The data access object. Set by calling <code>MyServiceLocator.GetInstance<ICoreDAO<T>>();</code></param>
 protected CoreBaseLogic(ICoreDAO <T> dao) : base(dao)
 {
 }