Commands from a StoreSet< Model >
1. StoresetName.SelectAsync(): Return a List with all the rows from the Store
2. StoresetName.SelectAsync(id): Return a model with the selected identify
3. StoresetName.AddAsync(data): Insert data into the store, can be a List< model > or single model
4. StoresetName.UpdateAsync(data): Update the model you are ending, can be a List< model > or single row.
5. StoresetName.DeleteAsync(id): Delete the selected idendity
6. StoresetName.CleanAsync(): Delete all the data in the selected storeset