public Entities.Account StaffAddBLL(string txtStaffname, string txtMobileNo, string txtemail, string staffcode, string centrecode)
 {
     DataAccessLayer.RTOAdmin.RTOCounterStaffServiceDAO accDAO1 = new DataAccessLayer.RTOAdmin.RTOCounterStaffServiceDAO();
     Entities.Account entObj1 = new Entities.Account();
     entObj1 = accDAO1.StaffAddDAL(txtStaffname, txtMobileNo, txtemail, staffcode, centrecode);
     return(entObj1);
 }