Browse Source

[#61] Added the prototype for the get method in LeDataSource class

Roland Haroutiounian 9 years ago
parent
commit
4f8c7a22bb
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      leobject/datasources/ledatasource.py

+ 6
- 6
leobject/datasources/ledatasource.py View File

@@ -8,11 +8,11 @@ class LeDataSource(object):
8 8
         self.options = options
9 9
 
10 10
 
11
-    ## @brief Update
12
-    # @param lodel_id int|(int) : id(s) of the object(s) where to apply changes
13
-    # @param data dict : dictionnary of field:value to save
14
-    # @param update_filters string | (string) : list of string of updata filters
15
-    def update(self, lodel_id, data, update_filters=None):
11
+    ## @brief search for a collection of objects
12
+    # @param emclass
13
+    # @param emtype
14
+    # @param filters
15
+    # @param relational_filters
16
+    def get(self, emclass, emtype, filters, relational_filters):
16 17
         pass
17 18
 
18
-    

Loading…
Cancel
Save