Example #1
0
    private void BindDefaultSupervisior(string location)
    {
        DataTable dt = employee.GetDefaultSupervisior(location);

        if (dt != null && dt.Rows.Count > 0)
        {
            SelectItem(ddlSupervisior, dt.Rows[0]["pEmployeeMasterID"].ToString());
        }
    }