Exemplo n.º 1
0
 def create_item(self, name, price, quantity):
     basic_backend.create_item(name, price, quantity)
 def create_item(self, nuevoAutor):
     basic_backend.create_item(nuevoAutor)
Exemplo n.º 3
0
 def create_item(self, day, food_cat, food_type, quantity):
     basic_backend.create_item(day, food_cat, food_type, quantity)
Exemplo n.º 4
0
 def create_item(self, name, price, quantity):
     bb.create_item(name, price, quantity)
Exemplo n.º 5
0
 def create_item(table_name, *items):
     return basic_backend.create_item(table_name, *items)
Exemplo n.º 6
0
 def create_item(conn, table_name, *items):
     basic_backend.create_item(conn, table_name, *items)