You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
// import { Request } from '../../models/request';
|
|
import { Request } from 'src/app/hmg-common/services/models/request';
|
|
import { AuthenticatedUser } from './authenticated-user';
|
|
import { CountryCode } from 'src/app/hmg-common/ui/mobile-number/international-mobile/models/country-code.model';
|
|
|
|
export class GetLoginInfoRequest extends Request {
|
|
UserName: string;
|
|
MobileNumber: string;
|
|
LogInTokenID: string;
|
|
DeviceToken: string;
|
|
LanguageID: number;
|
|
P_USER_NAME: string;
|
|
Channel:number;
|
|
CompanyID:number;
|
|
DeviceType:string;
|
|
LoginType:number;
|
|
EMPLOYEE_NAME:string;
|
|
EmployeeName:string;
|
|
// constructor(user: AuthenticatedUser) {
|
|
// super();
|
|
// this.NationalID = user.IdentificationNo;
|
|
// this.MobileNo = this.PatientMobileNumber = user.MobileNo;
|
|
// this.DeviceToken = user.deviceToken;
|
|
// this.PatientID = user.PatientID;
|
|
// this.ProjectOutSA = user.PatientOutSA ;
|
|
// this.LoginType = 2;
|
|
// this.ZipCode = CountryCode.localCode( user.ZipCode);
|
|
// this.SearchType = 2;
|
|
// this.PatientIdentificationID = '';
|
|
// this.isRegister = false;
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
} |