function getVillage_industrialByBusinessId($sessionkey, $appcode, $id)
{
    $main_result = "<VPROFILERESULT>";
    $main_result .= "<AUTHSTATUS>0</AUTHSTATUS>";
    $userId = ValidateSession($sessionkey, $appcode);
    if ($userId > -1) {
        $main_result .= "<AUTHSTATUS>1</AUTHSTATUS>";
        $result = BL_manageVillage_industrial::getVillage_industrialListByBusinessId($id);
        if ($result->type == 1) {
            $arr_Village_industrialList = $result->data;
            if (count($arr_Village_industrialList) > 0) {
                $main_result .= "<RESULTSTATUS>1</RESULTSTATUS>";
                foreach ($arr_Village_industrialList as $obj_Village_industrial) {
                    $main_result .= getVillage_industrialXml($obj_Village_industrial);
                }
            } else {
                $main_result .= "<RESULTSTATUS>0</RESULTSTATUS>";
            }
        } else {
            $main_result .= "<RESULTSTATUS>0</RESULTSTATUS>";
        }
    }
    $main_result .= "</VPROFILERESULT>";
    return $main_result;
}
 public static function deleteVillage_industrial($obj_mainpacket)
 {
     $packet = $obj_mainpacket->packet;
     $BusinessId = $packet[0];
     $msg = "failed";
     $result = 0;
     $result_BusinessId = 0;
     $retResult = BL_manageVillage_industrial::getVillage_industrialListByBusinessId($BusinessId);
     if ($retResult->type == 1) {
         $obj_Village_industrial = $retResult->data[0];
         $obj_result2 = DAL_manageVillage_industrial::deleteVillage_industrial($obj_Village_industrial->BusinessId);
         if ($obj_result2->type == 1) {
             $result = 1;
             $result_BusinessId = $obj_Village_industrial->BusinessId;
             $msg = "success";
         } else {
             $msg = "Sorry!!! Problem occured while deleting this Village_industrial";
         }
     } else {
         $msg = "Sorry!!! The Village_industrial you are tring to delete is not found";
     }
     $obj_mainpacket->returnValues = array($result, $obj_Village_industrial->BusinessId, $msg);
     $obj_mainpacket->main_setPacket();
 }