TF-34 Add data layer login for fix bug mock data user

This commit is contained in:
dab246
2021-08-25 13:12:17 +07:00
committed by Dat H. Pham
parent b3e1534de3
commit cae1252fc8
16 changed files with 227 additions and 58 deletions
@@ -0,0 +1,9 @@
class Attribute {
static const id = '_id';
static const firstname = 'firstname';
static const lastname = 'lastname';
static const job_title = 'job_title';
static const building_location = 'building_location';
static const office_location = 'office_location';
static const main_phone = 'main_phone';
}
@@ -2,4 +2,5 @@ class LoginConstant {
static const keyBaseUrl = 'KEY_BASE_URL';
static const keyUserName = 'KEY_USER_NAME';
static const keyPassword = 'KEY_PASSWORD';
static const keyUserProfile = 'KEY_USER_PROFILE';
}