public class UsersVO { //Doctors Profile int _DoctorId; string _Firstname; string _Middlename; string _Lastname; int _MainSpecialityID; string _MainSpeciality; } public string Firstname { get { return _Firstname; } set { _Firstname = value; } } public string Middlename { get { return _Middlename; } set { _Middlename = value; } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)