func NewProductStore(db *mgo.Database) *ProductStore { return &ProductStore{*storable.NewStore(db, "products")} }
func NewAnotherModelStore(db *mgo.Database, foo bool) *AnotherModelStore { return &AnotherModelStore{ *storable.NewStore(db, "another_model"), foo, } }