Example #1
0
 /// <summary>
 /// Set the db instance to allow you to find the user in SendNewPassword
 /// </summary>
 /// <param name="dbInstance"></param>
 public void SetDBInstance(SiteDB dbInstance)
 {
     this.DBInstance = dbInstance;
 }
Example #2
0
 public EventPaginationModel(EventViewType eventType, SiteDB dbInstance) : this(eventType, dbInstance, null, null)
 {
 }
Example #3
0
 public BlogPaginationModel(SiteDB dbInstance, int?pageIndex, int?pageSize) : this(dbInstance, BlogFilterType.None, null, pageIndex, pageSize)
 {
 }
Example #4
0
 public BlogPaginationModel(SiteDB dbInstance, BlogFilterType filterType, string filterValue) : this(dbInstance, filterType, filterValue, null, null)
 {
 }
Example #5
0
 public BlogPaginationModel(SiteDB dbInstance) : this(dbInstance, BlogFilterType.None, null, null, null)
 {
 }