/// <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; }
public EventPaginationModel(EventViewType eventType, SiteDB dbInstance) : this(eventType, dbInstance, null, null) { }
public BlogPaginationModel(SiteDB dbInstance, int?pageIndex, int?pageSize) : this(dbInstance, BlogFilterType.None, null, pageIndex, pageSize) { }
public BlogPaginationModel(SiteDB dbInstance, BlogFilterType filterType, string filterValue) : this(dbInstance, filterType, filterValue, null, null) { }
public BlogPaginationModel(SiteDB dbInstance) : this(dbInstance, BlogFilterType.None, null, null, null) { }