diff --git a/HRM.BO/Common/PayrollGlobalFunctions.cs b/HRM.BO/Common/PayrollGlobalFunctions.cs index 6b33294..575b998 100644 --- a/HRM.BO/Common/PayrollGlobalFunctions.cs +++ b/HRM.BO/Common/PayrollGlobalFunctions.cs @@ -1,6 +1,7 @@ using Ease.Core.Model; using System; using System.Collections.Generic; +using System.Data; using System.Drawing; using System.Linq; using System.Text; @@ -504,6 +505,20 @@ namespace HRM.BO return isNullOrWhiteSpace; } + public static string[] GetDFSL(DataTable dt, string nDepartmentID) + { + string sDes = ""; + foreach (DataRow dr in dt.Rows) + { + if (dr[0].ToString() == nDepartmentID) + { + sDes = dr[3].ToString(); + break; + } + } + string[] values = sDes.Split(','); + return values; + } } public class CustomException : Exception diff --git a/HRM.DA/DA/Employee/EmployeeDA.cs b/HRM.DA/DA/Employee/EmployeeDA.cs index 1a6be93..eb8b221 100644 --- a/HRM.DA/DA/Employee/EmployeeDA.cs +++ b/HRM.DA/DA/Employee/EmployeeDA.cs @@ -4150,6 +4150,85 @@ AND ea.EMPLOYEEID=emp.EMPLOYEEID AND ea.LASTLEVEL=1),'') LastAcademic , return tc.ExecuteDataTable( "SELECT e.employeeId as id, e.employeeNo, e.name FROM employee e WHERE e.payrolltypeid=%n", payrolltypeid); } + internal static DataSet GetEmpDetailsEcho(TransactionContext tc, string sEmpID) + { + DataSet oEmpDetails = new DataSet(); + try + { + string sql = + SQLParser.MakeSQL( + @"SELECT Emp.employeeID, Emp.EMPLOYEENO,Emp.Name,Emp.DepartmentID,Emp.BIRTHDATE,Emp.JOININGDATE,Emp.DATEOFCONFIRMATION, + Cat.Description as Category, Bangla.BanglaName, Bangla.BanglaDesignation, Bangla.DEPARTMENTBANGLA, Bangla.SectionBangla, + Emp.GENDER,Emp.MARITALSTATUSID,Emp.MOBILENO,Emp.EMAILADDRESS,Emp.ACCOUNTNO,Emp.OutPayAccountNo, + Emp.BASICSALARY,Emp.GrossSalary,Emp.VendorCode,Emp.TAXAMOUNT,Deg.NAME AS DegName,Dep.DESCRIPTION AS DepDes, + GD.DESCRIPTION AS GDDes,BK.NAME AS Bank,BR.NAME AS Branch,BKOUT.NAME AS OUTPayBank,BROUT.NAME As OUTPayBranch, + RG.NAME AS RegName,Loc.Description as Locdes,IsNull(ac.CardNumber,'') as CardNo,na.Description AS Nationality, + Emp.FATHERNAME,Emp.MOTHERNAME,eSpouse.Name AS Spouse,Emp.NationalID,Emp.BLOODGROUP,eContact.PARMANENTADDRESS AS PerVillage, + dis1.[NAME] AS PerDist,t1.[NAME] AS PerThana,eContact.PRESENTADDRESS AS TempVillage,eContact.PresentPO,eContact.PermanentPO,dis2.[NAME] AS TempDist, + t2.[NAME] AS TempThana,eContact.PERSONALTELEPHONE AS LANDPHONE,eContact.PARMANENTMOBILE AS OFFICEMOBILE + FROM EMPLOYEE AS Emp + LEFT Outer JOIN DESIGNATION AS Deg ON Emp.DESIGNATIONID=Deg.DESIGNATIONID + LEFT OUTER JOIN Department AS Dep ON Emp.DEPARTMENTID=Dep.DEPARTMENTID + LEFT OUTER JOIN Grades AS GD ON Emp.GRADEID=GD.GRADEID + LEFT OUTER JOIN Religion AS RG ON Emp.RELIGIONID=RG.RELIGIONID + LEFT OUTER JOIN Branches AS BR ON Emp.BRANCHID=BR.BRANCHID + LEFT OUTER JOIN BANKS AS BK ON BK.BANKID=BR.BANKID + LEFT OUTER JOIN Branches AS BROUT ON Emp.OUTPayBRANCHID=BROUT.BRANCHID + LEFT OUTER JOIN BANKS AS BKOUT ON BKOUT.BANKID=BROUT.BANKID + LEFT OUTER JOIN Location AS Loc ON Emp.LocationID=Loc.LocationID + LEFT OUTER JOIN AccessCard ac ON Emp.CardID = ac.AccessCardID + LEFT OUTER JOIN NATIONALITY na ON Emp.NationalityID = na.NATIONALITYID + LEFT OUTER JOIN EMPSPOUSE eSpouse ON Emp.EMPLOYEEID = eSpouse.EMPLOYEEID + LEFT OUTER JOIN EMPCONTACT eContact ON Emp.EMPLOYEEID = eContact.EMPLOYEEID + LEFT OUTER JOIN DISTRICT dis1 ON eContact.PARMANENTDISTRICTID = dis1.DISTRICTID + LEFT OUTER JOIN THANA t1 ON eContact.PARMANENTTHANAID = t1.THANAID + LEFT OUTER JOIN DISTRICT dis2 ON eContact.PRESENTDISTRICTID = dis2.DISTRICTID + LEFT OUTER JOIN Thana t2 ON eContact.PRESENTTHANAID = t2.THANAID + LEFT OUTER JOIN Category Cat on emp.categoryid = cat.categoryID + LEFT OUTER JOIN vw_EmployeeImportantInfo Bangla on Emp.EmployeeID = Bangla.EmployeeID + ORDER BY Emp.EMPLOYEENO"); + // string sql = + // SQLParser.MakeSQL( + // @"SELECT Emp.EMPLOYEENO,Emp.Name,Emp.DepartmentID,Emp.BIRTHDATE,Emp.JOININGDATE,Emp.DATEOFCONFIRMATION, + // Cat.Description as Category, Bangla.BanglaName, Bangla.BanglaDesignation, Bangla.DEPARTMENTBANGLA, Bangla.SectionBangla, + //Emp.GENDER,Emp.MARITALSTATUSID,Emp.MOBILENO,Emp.EMAILADDRESS,Emp.ACCOUNTNO,Emp.OutPayAccountNo, + //Emp.BASICSALARY,Emp.GrossSalary,Emp.VendorCode,Emp.TAXAMOUNT,Deg.NAME AS DegName,Dep.DESCRIPTION AS DepDes, + //GD.DESCRIPTION AS GDDes,BK.NAME AS Bank,BR.NAME AS Branch,BKOUT.NAME AS OUTPayBank,BROUT.NAME As OUTPayBranch, + //RG.NAME AS RegName,Loc.Description as Locdes,IsNull(ac.CardNumber,'') as CardNo,na.Description AS Nationality, + //Emp.FATHERNAME,Emp.MOTHERNAME,eSpouse.Name AS Spouse,Emp.NationalID,Emp.BLOODGROUP,eContact.PARMANENTADDRESS AS PerVillage, + //dis1.[NAME] AS PerDist,t1.[NAME] AS PerThana,eContact.PRESENTADDRESS AS TempVillage,eContact.PresentPO,eContact.PermanentPO,dis2.[NAME] AS TempDist, + //t2.[NAME] AS TempThana,eContact.PERSONALTELEPHONE AS LANDPHONE,eContact.PARMANENTMOBILE AS OFFICEMOBILE + //FROM EMPLOYEE AS Emp + //LEFT Outer JOIN DESIGNATION AS Deg ON Emp.DESIGNATIONID=Deg.DESIGNATIONID + //LEFT OUTER JOIN Department AS Dep ON Emp.DEPARTMENTID=Dep.DEPARTMENTID + //LEFT OUTER JOIN Grades AS GD ON Emp.GRADEID=GD.GRADEID + //LEFT OUTER JOIN Religion AS RG ON Emp.RELIGIONID=RG.RELIGIONID + //LEFT OUTER JOIN Branches AS BR ON Emp.BRANCHID=BR.BRANCHID + //LEFT OUTER JOIN BANKS AS BK ON BK.BANKID=BR.BANKID + //LEFT OUTER JOIN Branches AS BROUT ON Emp.OUTPayBRANCHID=BROUT.BRANCHID + //LEFT OUTER JOIN BANKS AS BKOUT ON BKOUT.BANKID=BROUT.BANKID + //LEFT OUTER JOIN Location AS Loc ON Emp.LocationID=Loc.LocationID + //LEFT OUTER JOIN AccessCard ac ON Emp.CardID = ac.AccessCardID + //LEFT OUTER JOIN NATIONALITY na ON Emp.NationalityID = na.NATIONALITYID + //LEFT OUTER JOIN EMPSPOUSE eSpouse ON Emp.EMPLOYEEID = eSpouse.EMPLOYEEID + //LEFT OUTER JOIN EMPCONTACT eContact ON Emp.EMPLOYEEID = eContact.EMPLOYEEID + //LEFT OUTER JOIN DISTRICT dis1 ON eContact.PARMANENTDISTRICTID = dis1.DISTRICTID + //LEFT OUTER JOIN THANA t1 ON eContact.PARMANENTTHANAID = t1.THANAID + //LEFT OUTER JOIN DISTRICT dis2 ON eContact.PRESENTDISTRICTID = dis2.DISTRICTID + //LEFT OUTER JOIN Thana t2 ON eContact.PRESENTTHANAID = t2.THANAID + // LEFT OUTER JOIN Category Cat on emp.categoryid = cat.categoryID + // LEFT OUTER JOIN vw_EmployeeImportantInfo Bangla on Emp.EmployeeID = Bangla.EmployeeID + //WHERE Emp.EMPLOYEEID IN(%q) ORDER BY Emp.EMPLOYEENO", sEmpID); + + oEmpDetails = tc.ExecuteDataSet(sql); + + } + catch (Exception ex) + { + throw new Exception(ex.Message); + } + return oEmpDetails; + } } #endregion diff --git a/HRM.DA/DA/HREmployee/HREmployeeDA.cs b/HRM.DA/DA/HREmployee/HREmployeeDA.cs index 6ef55e9..3727fe1 100644 --- a/HRM.DA/DA/HREmployee/HREmployeeDA.cs +++ b/HRM.DA/DA/HREmployee/HREmployeeDA.cs @@ -1095,6 +1095,31 @@ namespace HRM.DA return ds; } + public static IDataReader GetAllEmpAcademics(TransactionContext tc) + { + return tc.ExecuteReader(@"SELECT [INSTITUTENAME] + ,[EDUCATIONTYPEID] + ,[ACADEMICID] + ,[EMPLOYEEID] + ,[EDUCATIONLEVELID] + ,[EDUCATIONTYPEID] + ,[DISCIPLINEID] + ,[INSTITUTIONID] + ,[PASSINGYEAR] + ,[CLASSORDIVISION] + ,[GPAORMARKS] + ,[LASTLEVEL] + ,[OUTOF] + ,[RESULTTYPEID] + ,[PHOTOPATH] + ,[DOCSUBMISSIONDATE] + ,[LastLevelNonTech] + ,[ProfileStatus] + , iif(isnull(empfileuploadid, 0) > 0, 1, 0) HasAttachment + from[EMPACADEMIC] ea + left join empfileupload eu on eu.empid = ea.employeeid and + eu.referenceid = ea.ACADEMICID and eu.fileType = 10"); + } #endregion #region EmpAchievements Get diff --git a/HRM.DA/Service/Employee/EmployeeService.cs b/HRM.DA/Service/Employee/EmployeeService.cs index a544994..2f611e2 100644 --- a/HRM.DA/Service/Employee/EmployeeService.cs +++ b/HRM.DA/Service/Employee/EmployeeService.cs @@ -5877,5 +5877,29 @@ namespace HRM.DA } return table; } + public DataSet GetEmpDetailsEcho(string sEmpID) + { + DataSet oEmpDetails = new DataSet(); + TransactionContext tc = null; + try + { + tc = TransactionContext.Begin(); + oEmpDetails = EmployeeDA.GetEmpDetailsEcho(tc, sEmpID); + tc.End(); + } + catch (Exception e) + { + #region Handle Exception + + if (tc != null) + tc.HandleError(); + ExceptionLog.Write(e); + throw new ServiceException(e.Message, e); + + #endregion + } + + return oEmpDetails; + } } } \ No newline at end of file diff --git a/HRM.DA/Service/HREmployee/HREmployeeService.cs b/HRM.DA/Service/HREmployee/HREmployeeService.cs index 6801d09..34de88b 100644 --- a/HRM.DA/Service/HREmployee/HREmployeeService.cs +++ b/HRM.DA/Service/HREmployee/HREmployeeService.cs @@ -4177,6 +4177,35 @@ namespace HRM.DA return ds; } + public List GetAllEmpAcademics() + { + List oEmpAcademics = new List(); + + TransactionContext tc = null; + try + { + tc = TransactionContext.Begin(); + DataReader dr = new DataReader(HREmployeeDA.GetAllEmpAcademics(tc)); + oEmpAcademics = this.CreateEmpAcademicObjects(dr); + dr.Close(); + + tc.End(); + } + catch (Exception e) + { + #region Handle Exception + + if (tc != null) + tc.HandleError(); + ExceptionLog.Write(e); + + throw new ServiceException(e.Message, e); + + #endregion + } + + return oEmpAcademics; + } #endregion diff --git a/HRM.Report/Class/rptEcho.cs b/HRM.Report/Class/rptEcho.cs index 2840451..23d2ad5 100644 --- a/HRM.Report/Class/rptEcho.cs +++ b/HRM.Report/Class/rptEcho.cs @@ -3009,5 +3009,217 @@ namespace HRM.Report #endregion #endregion + + + #region Employee Detail Info + + public byte[] ShowEmployeeDetailInfo(string sEmpID, string reportType, int payrollTypeID) + { + try + { + ReportProcessor reportProcessor = new ReportProcessor(); + //string sEmpID = _selectedParameter.ReportItem.INSQL; + DataRow dr = null; + List oEmps = new EmployeeService().GetByEmpIDs(sEmpID); + List hrEmployees = new HREmployeeService().GetEmployeeByIds(sEmpID); + List educationLevels = new EducationLevelService().Get(); + List empAcademics = new HREmployeeService().GetAllEmpAcademics(); + + + + Employee oEmployee = null; + + List validIds = sEmpID.Split(',') + .Select(s => int.Parse(s)) + .ToList(); + + DataSet oEmpDetails = new EmployeeService().GetEmpDetailsEcho(sEmpID); + + List rowsToDelete = new List(); + + foreach (DataRow row in oEmpDetails.Tables[0].Rows) + { + int empId = Convert.ToInt32(row["employeeID"]); + if (!validIds.Contains(empId)) + { + rowsToDelete.Add(row); + } + } + + // Now remove them + foreach (DataRow row in rowsToDelete) + { + oEmpDetails.Tables[0].Rows.Remove(row); + } + + // Optional: accept changes if you want to commit removal + oEmpDetails.AcceptChanges(); + + + DataTable dtDFSL = new EmployeeService().GetDFSL(); + HRM.Report.PayrollDataSet.PayrollDataSet.EmployeeDetailEchoDataTable dTEmpDetail = new HRM.Report.PayrollDataSet.PayrollDataSet.EmployeeDetailEchoDataTable(); + //bool isDesigFromEmp = ConfigurationManager.GetBoolValue("designation", "desigfromdescriptiontext", EnumConfigurationType.Logic_Old); + bool isDesigFromEmp = false; + + foreach (DataRow oDRow in oEmpDetails.Tables[0].Rows) + { + string[] sDes = GlobalExtensions.GetDFSL(dtDFSL, oDRow["DepartmentID"].ToString()); + oEmployee = oEmps.Where(o => o.EmployeeNo.ToUpper().Trim() == oDRow["EMPLOYEENO"].ToString().ToUpper().Trim()) + .SingleOrDefault(); + + dr = dTEmpDetail.NewRow(); + dr["EmpNo"] = oDRow["EMPLOYEENO"]; + dr["Name"] = oDRow["NAME"]; + if (isDesigFromEmp && oEmployee != null) + dr["Designation"] = oEmployee.DescriptionText; + else + dr["Designation"] = oDRow["DegName"]; + if (sDes.Length == 5) + { + dr["Department"] = sDes[1]; + dr["Floor"] = sDes[2]; + dr["Section"] = sDes[3]; + dr["Line"] = sDes[4]; + } + else if (sDes.Length == 4) + { + dr["Department"] = sDes[1]; + dr["Floor"] = sDes[2]; + dr["Section"] = sDes[3]; + } + else if (sDes.Length == 3) + { + dr["Department"] = sDes[1]; + dr["Floor"] = sDes[2]; + } + else if (sDes.Length == 2) + { + dr["Department"] = sDes[1]; + } + dr["Category"] = oDRow["Category"]; + dr["Grade"] = oDRow["GDDes"]; + dr["BasicSalary"] = oDRow["BASICSALARY"]; + dr["DOB"] = oDRow["BIRTHDATE"]; + if (Convert.ToInt32(oDRow["GENDER"]) == 0) + { + dr["Gender"] = "None"; + } + else if (Convert.ToInt32(oDRow["GENDER"]) == 1) + { + dr["Gender"] = "Male"; + } + else if (Convert.ToInt32(oDRow["GENDER"]) == 2) + { + dr["Gender"] = "Female"; + } + else if (Convert.ToInt32(oDRow["GENDER"]) == 3) + { + dr["Gender"] = "Both"; + } + dr["Religion"] = oDRow["RegName"]; + dr["Bank"] = oDRow["Bank"]; + dr["Branch"] = oDRow["Branch"]; + dr["AccountNo"] = oDRow["ACCOUNTNO"]; + dr["BankOPI"] = oDRow["OUTPayBank"]; + dr["BranchOPI"] = oDRow["OUTPayBranch"]; + dr["AccountNoOPI"] = oDRow["OutPayAccountNo"]; + dr["TempPost"] = oDRow["PresentPO"]; + dr["PerPost"] = oDRow["PermanentPO"]; + dr["DOJ"] = oDRow["JOININGDATE"]; + dr["ConfirmDate"] = oDRow["DATEOFCONFIRMATION"]; + dr["TaxAmount"] = oDRow["TAXAMOUNT"]; + dr["LocDes"] = oDRow["LocDes"]; + dr["GrossSalary"] = oDRow["GrossSalary"]; + dr["VendorCode"] = oDRow["VendorCode"]; + dr["BanglaName"] = oDRow["BanglaName"]; + dr["BanglaDesignation"] = oDRow["BanglaDesignation"]; + dr["DEPARTMENTBANGLA"] = oDRow["DEPARTMENTBANGLA"]; + dr["SectionBangla"] = oDRow["SectionBangla"]; + if (Convert.ToInt32(oDRow["MARITALSTATUSID"]) == 0) + { + dr["MarStatus"] = "None"; + } + else if (Convert.ToInt32(oDRow["MARITALSTATUSID"]) == 1) + { + dr["MarStatus"] = "Married"; + } + else if (Convert.ToInt32(oDRow["MARITALSTATUSID"]) == 2) + { + dr["MarStatus"] = "UnMarried"; + } + dr["MobileNo"] = oDRow["MOBILENO"]; + dr["MailAdd"] = oDRow["EMAILADDRESS"]; + dr["RFID"] = oDRow["CardNo"]; + dr["Nationality"] = oDRow["Nationality"]; + dr["FathersName"] = oDRow["FATHERNAME"]; + dr["MothersName"] = oDRow["MOTHERNAME"]; + dr["Spouse"] = oDRow["Spouse"]; + dr["OFFICEMOBILE"] = oDRow["OFFICEMOBILE"].ToString(); + dr["LANDPHONE"] = oDRow["LANDPHONE"].ToString(); + + string sEducationLevel = string.Empty; + + HREmployee ohrEmp = hrEmployees.Find(delegate (HREmployee hEmp) { return hEmp.EmployeeNo == oEmployee.EmployeeNo; }); + if (ohrEmp != null) + { + ohrEmp.Academics = empAcademics.FindAll(ea => ea.EmployeeID == ohrEmp.ID);//new HREmployeeService().GetAllEmpAcademics(ohrEmp.ID); + if(ohrEmp.Academics?.Count > 0) + { + foreach (EmpAcademic eAcademic in ohrEmp.Academics) + { + eAcademic.EducationLevel = educationLevels.Find(el => el.ID == (int)eAcademic.EducationLevelID); + if (sEducationLevel == "") + { + sEducationLevel = sEducationLevel + eAcademic.EducationLevel?.Description; + } + else if (sEducationLevel != "") + { + sEducationLevel = sEducationLevel + "," + eAcademic.EducationLevel?.Description; + } + } + } + } + + dr["Qualification"] = sEducationLevel; + dr["VotterID"] = oDRow["NationalID"]; + dr["TempVill"] = oDRow["TempVillage"]; + dr["TempPS"] = oDRow["TempThana"]; + dr["TempDist"] = oDRow["TempDist"]; + dr["PerVill"] = oDRow["PerVillage"]; + dr["PerPS"] = oDRow["PerThana"]; + dr["PerDist"] = oDRow["PerDist"]; + + dr["BloodGroup"] = ((EnumBloodGroup)Convert.ToInt32(oDRow["BLOODGROUP"])).BloodGroupToFriendlyName(); + + dTEmpDetail.Rows.Add(dr); + } + DataSet dSet = new DataSet(); + dTEmpDetail.TableName = "PayrollDataSet_EmployeeDetail"; + dSet.Tables.Add(dTEmpDetail); + + //bool isOPISeparateAcountApplicable = ConfigurationManager.GetBoolValue("opi", "opiexist", EnumConfigurationType.Logic_Old); + bool isOPISeparateAcountApplicable = true; + List reportParameters = null; + + if (isOPISeparateAcountApplicable) + { + //form.CommonReportView(_selectedParameter.ReportItem, dSet, "HRM.Report.RDLC.EmployeeDetailWithOPI.rdlc", null); + //return reportProcessor.AttendanceReportsView(null, dSet, null, "HRM.Report.RDLC.EmployeeDetailWithOPI.rdlc", _reportParameters, true, payrollTypeID, reportType); + return reportProcessor.CommonReportView(null, "HRM.Report.RDLC.EmployeeDetailWithOPIEcho.rdlc", dSet, null, reportParameters, true, payrollTypeID, reportType); + } + else + { + //form.CommonReportView(_selectedParameter.ReportItem, dSet, "HRM.Report.RDLC.EmployeeDetail.rdlc", null); + //return reportProcessor.AttendanceReportsView(null, dSet, null, "HRM.Report.RDLC.EmployeeDetail.rdlc",, _reportParameters, true, payrollTypeID, reportType); + return reportProcessor.CommonReportView(null, "HRM.Report.RDLC.EmployeeDetailEcho.rdlc", dSet, null, reportParameters, true, payrollTypeID, reportType); + } + } + catch (Exception ex) + { + throw new Exception(ex.Message, ex); + } + + } + #endregion } } diff --git a/HRM.Report/HRM.Report.csproj b/HRM.Report/HRM.Report.csproj index 99caf2f..307ebea 100644 --- a/HRM.Report/HRM.Report.csproj +++ b/HRM.Report/HRM.Report.csproj @@ -109,7 +109,9 @@ + + @@ -373,6 +375,8 @@ + + diff --git a/HRM.Report/PayrollDataSet/PMPDataSet.Designer.cs b/HRM.Report/PayrollDataSet/PMPDataSet.Designer.cs index a6b91d1..9092208 100644 --- a/HRM.Report/PayrollDataSet/PMPDataSet.Designer.cs +++ b/HRM.Report/PayrollDataSet/PMPDataSet.Designer.cs @@ -28,10 +28,12 @@ namespace HRM.Report.PayrollDataSet { private dtPMPObjectiveDataDataTable tabledtPMPObjectiveData; + private EmployeeDetailDataTable tableEmployeeDetail; + private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public PMPDataSet() { this.BeginInit(); this.InitClass(); @@ -42,7 +44,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected PMPDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context, false) { if ((this.IsBinarySerialized(info, context) == true)) { @@ -62,6 +64,9 @@ namespace HRM.Report.PayrollDataSet { if ((ds.Tables["dtPMPObjectiveData"] != null)) { base.Tables.Add(new dtPMPObjectiveDataDataTable(ds.Tables["dtPMPObjectiveData"])); } + if ((ds.Tables["EmployeeDetail"] != null)) { + base.Tables.Add(new EmployeeDetailDataTable(ds.Tables["EmployeeDetail"])); + } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; @@ -81,7 +86,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] public dtObjectivePercentageDataTable dtObjectivePercentage { @@ -91,7 +96,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] public dtPMPObjectiveDataDataTable dtPMPObjectiveData { @@ -101,7 +106,17 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Browsable(false)] + [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] + public EmployeeDetailDataTable EmployeeDetail { + get { + return this.tableEmployeeDetail; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.BrowsableAttribute(true)] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)] public override global::System.Data.SchemaSerializationMode SchemaSerializationMode { @@ -114,7 +129,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new global::System.Data.DataTableCollection Tables { get { @@ -123,7 +138,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new global::System.Data.DataRelationCollection Relations { get { @@ -132,7 +147,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void InitializeDerivedDataSet() { this.BeginInit(); this.InitClass(); @@ -140,7 +155,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataSet Clone() { PMPDataSet cln = ((PMPDataSet)(base.Clone())); cln.InitVars(); @@ -149,19 +164,19 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override bool ShouldSerializeTables() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override bool ShouldSerializeRelations() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) { if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { this.Reset(); @@ -173,6 +188,9 @@ namespace HRM.Report.PayrollDataSet { if ((ds.Tables["dtPMPObjectiveData"] != null)) { base.Tables.Add(new dtPMPObjectiveDataDataTable(ds.Tables["dtPMPObjectiveData"])); } + if ((ds.Tables["EmployeeDetail"] != null)) { + base.Tables.Add(new EmployeeDetailDataTable(ds.Tables["EmployeeDetail"])); + } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; @@ -189,7 +207,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() { global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream(); this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null)); @@ -198,13 +216,13 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.InitVars(true); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars(bool initTable) { this.tabledtObjectivePercentage = ((dtObjectivePercentageDataTable)(base.Tables["dtObjectivePercentage"])); if ((initTable == true)) { @@ -218,10 +236,16 @@ namespace HRM.Report.PayrollDataSet { this.tabledtPMPObjectiveData.InitVars(); } } + this.tableEmployeeDetail = ((EmployeeDetailDataTable)(base.Tables["EmployeeDetail"])); + if ((initTable == true)) { + if ((this.tableEmployeeDetail != null)) { + this.tableEmployeeDetail.InitVars(); + } + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.DataSetName = "PMPDataSet"; this.Prefix = ""; @@ -232,22 +256,30 @@ namespace HRM.Report.PayrollDataSet { base.Tables.Add(this.tabledtObjectivePercentage); this.tabledtPMPObjectiveData = new dtPMPObjectiveDataDataTable(); base.Tables.Add(this.tabledtPMPObjectiveData); + this.tableEmployeeDetail = new EmployeeDetailDataTable(); + base.Tables.Add(this.tableEmployeeDetail); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private bool ShouldSerializedtObjectivePercentage() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private bool ShouldSerializedtPMPObjectiveData() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + private bool ShouldSerializeEmployeeDetail() { + return false; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) { this.InitVars(); @@ -255,7 +287,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) { PMPDataSet ds = new PMPDataSet(); global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); @@ -301,12 +333,15 @@ namespace HRM.Report.PayrollDataSet { return type; } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void dtObjectivePercentageRowChangeEventHandler(object sender, dtObjectivePercentageRowChangeEvent e); - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void dtPMPObjectiveDataRowChangeEventHandler(object sender, dtPMPObjectiveDataRowChangeEvent e); + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public delegate void EmployeeDetailRowChangeEventHandler(object sender, EmployeeDetailRowChangeEvent e); + /// ///Represents the strongly named DataTable class. /// @@ -327,7 +362,7 @@ namespace HRM.Report.PayrollDataSet { private global::System.Data.DataColumn columnRowNo; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageDataTable() { this.TableName = "dtObjectivePercentage"; this.BeginInit(); @@ -336,7 +371,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal dtObjectivePercentageDataTable(global::System.Data.DataTable table) { this.TableName = table.TableName; if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { @@ -353,14 +388,14 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected dtObjectivePercentageDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CategoryColumn { get { return this.columnCategory; @@ -368,7 +403,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn TypeColumn { get { return this.columnType; @@ -376,7 +411,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ObjectiveSettingMoSColumn { get { return this.columnObjectiveSettingMoS; @@ -384,7 +419,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn DevelopmentPlanMosColumn { get { return this.columnDevelopmentPlanMos; @@ -392,7 +427,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn PercentageColumn { get { return this.columnPercentage; @@ -400,7 +435,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn RowNoColumn { get { return this.columnRowNo; @@ -408,7 +443,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int Count { get { @@ -417,33 +452,33 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageRow this[int index] { get { return ((dtObjectivePercentageRow)(this.Rows[index])); } } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtObjectivePercentageRowChangeEventHandler dtObjectivePercentageRowChanging; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtObjectivePercentageRowChangeEventHandler dtObjectivePercentageRowChanged; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtObjectivePercentageRowChangeEventHandler dtObjectivePercentageRowDeleting; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtObjectivePercentageRowChangeEventHandler dtObjectivePercentageRowDeleted; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void AdddtObjectivePercentageRow(dtObjectivePercentageRow row) { this.Rows.Add(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageRow AdddtObjectivePercentageRow(string Category, string Type, string ObjectiveSettingMoS, string DevelopmentPlanMos, int Percentage, string RowNo) { dtObjectivePercentageRow rowdtObjectivePercentageRow = ((dtObjectivePercentageRow)(this.NewRow())); object[] columnValuesArray = new object[] { @@ -459,7 +494,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataTable Clone() { dtObjectivePercentageDataTable cln = ((dtObjectivePercentageDataTable)(base.Clone())); cln.InitVars(); @@ -467,13 +502,13 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataTable CreateInstance() { return new dtObjectivePercentageDataTable(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.columnCategory = base.Columns["Category"]; this.columnType = base.Columns["Type"]; @@ -484,7 +519,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.columnCategory = new global::System.Data.DataColumn("Category", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCategory); @@ -501,25 +536,25 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageRow NewdtObjectivePercentageRow() { return ((dtObjectivePercentageRow)(this.NewRow())); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { return new dtObjectivePercentageRow(builder); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Type GetRowType() { return typeof(dtObjectivePercentageRow); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.dtObjectivePercentageRowChanged != null)) { @@ -528,7 +563,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.dtObjectivePercentageRowChanging != null)) { @@ -537,7 +572,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.dtObjectivePercentageRowDeleted != null)) { @@ -546,7 +581,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.dtObjectivePercentageRowDeleting != null)) { @@ -555,13 +590,13 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void RemovedtObjectivePercentageRow(dtObjectivePercentageRow row) { this.Rows.Remove(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); @@ -652,7 +687,7 @@ namespace HRM.Report.PayrollDataSet { private global::System.Data.DataColumn columnWeightages; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataDataTable() { this.TableName = "dtPMPObjectiveData"; this.BeginInit(); @@ -661,7 +696,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal dtPMPObjectiveDataDataTable(global::System.Data.DataTable table) { this.TableName = table.TableName; if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { @@ -678,14 +713,14 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected dtPMPObjectiveDataDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EmployeeNoColumn { get { return this.columnEmployeeNo; @@ -693,7 +728,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn NameColumn { get { return this.columnName; @@ -701,7 +736,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn BandColumn { get { return this.columnBand; @@ -709,7 +744,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn DepartmentColumn { get { return this.columnDepartment; @@ -717,7 +752,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn DesignationColumn { get { return this.columnDesignation; @@ -725,7 +760,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn KPI_TitleColumn { get { return this.columnKPI_Title; @@ -733,7 +768,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn KPI_DescriptionColumn { get { return this.columnKPI_Description; @@ -741,7 +776,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn KPI_ThresholdsColumn { get { return this.columnKPI_Thresholds; @@ -749,7 +784,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn KPI_Thresholds2Column { get { return this.columnKPI_Thresholds2; @@ -757,7 +792,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn WeightagesColumn { get { return this.columnWeightages; @@ -765,7 +800,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int Count { get { @@ -774,33 +809,33 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataRow this[int index] { get { return ((dtPMPObjectiveDataRow)(this.Rows[index])); } } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtPMPObjectiveDataRowChangeEventHandler dtPMPObjectiveDataRowChanging; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtPMPObjectiveDataRowChangeEventHandler dtPMPObjectiveDataRowChanged; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtPMPObjectiveDataRowChangeEventHandler dtPMPObjectiveDataRowDeleting; - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event dtPMPObjectiveDataRowChangeEventHandler dtPMPObjectiveDataRowDeleted; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void AdddtPMPObjectiveDataRow(dtPMPObjectiveDataRow row) { this.Rows.Add(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataRow AdddtPMPObjectiveDataRow(string EmployeeNo, string Name, string Band, string Department, string Designation, string KPI_Title, string KPI_Description, string KPI_Thresholds, string KPI_Thresholds2, string Weightages) { dtPMPObjectiveDataRow rowdtPMPObjectiveDataRow = ((dtPMPObjectiveDataRow)(this.NewRow())); object[] columnValuesArray = new object[] { @@ -820,7 +855,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataTable Clone() { dtPMPObjectiveDataDataTable cln = ((dtPMPObjectiveDataDataTable)(base.Clone())); cln.InitVars(); @@ -828,13 +863,13 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataTable CreateInstance() { return new dtPMPObjectiveDataDataTable(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.columnEmployeeNo = base.Columns["EmployeeNo"]; this.columnName = base.Columns["Name"]; @@ -849,7 +884,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.columnEmployeeNo = new global::System.Data.DataColumn("EmployeeNo", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEmployeeNo); @@ -874,25 +909,25 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataRow NewdtPMPObjectiveDataRow() { return ((dtPMPObjectiveDataRow)(this.NewRow())); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { return new dtPMPObjectiveDataRow(builder); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Type GetRowType() { return typeof(dtPMPObjectiveDataRow); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.dtPMPObjectiveDataRowChanged != null)) { @@ -901,7 +936,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.dtPMPObjectiveDataRowChanging != null)) { @@ -910,7 +945,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.dtPMPObjectiveDataRowDeleted != null)) { @@ -919,7 +954,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.dtPMPObjectiveDataRowDeleting != null)) { @@ -928,13 +963,13 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void RemovedtPMPObjectiveDataRow(dtPMPObjectiveDataRow row) { this.Rows.Remove(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); @@ -997,6 +1032,989 @@ namespace HRM.Report.PayrollDataSet { } } + /// + ///Represents the strongly named DataTable class. + /// + [global::System.Serializable()] + [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] + public partial class EmployeeDetailDataTable : global::System.Data.TypedTableBase { + + private global::System.Data.DataColumn columnEmpNo; + + private global::System.Data.DataColumn columnName; + + private global::System.Data.DataColumn columnDesignation; + + private global::System.Data.DataColumn columnDepartment; + + private global::System.Data.DataColumn columnGrade; + + private global::System.Data.DataColumn columnBasicSalary; + + private global::System.Data.DataColumn columnDOB; + + private global::System.Data.DataColumn columnGender; + + private global::System.Data.DataColumn columnReligion; + + private global::System.Data.DataColumn columnBank; + + private global::System.Data.DataColumn columnBranch; + + private global::System.Data.DataColumn columnAccountNo; + + private global::System.Data.DataColumn columnDOJ; + + private global::System.Data.DataColumn columnConfirmDate; + + private global::System.Data.DataColumn columnTaxAmount; + + private global::System.Data.DataColumn columnMarStatus; + + private global::System.Data.DataColumn columnMobileNo; + + private global::System.Data.DataColumn columnMailAdd; + + private global::System.Data.DataColumn columnLocDes; + + private global::System.Data.DataColumn columnGrossSalary; + + private global::System.Data.DataColumn columnVendorCode; + + private global::System.Data.DataColumn columnBankOPI; + + private global::System.Data.DataColumn columnBranchOPI; + + private global::System.Data.DataColumn columnAccountNoOPI; + + private global::System.Data.DataColumn columnFloor; + + private global::System.Data.DataColumn columnSection; + + private global::System.Data.DataColumn columnLine; + + private global::System.Data.DataColumn columnRFID; + + private global::System.Data.DataColumn columnBloodGroup; + + private global::System.Data.DataColumn columnQualification; + + private global::System.Data.DataColumn columnVotterID; + + private global::System.Data.DataColumn columnNationality; + + private global::System.Data.DataColumn columnFathersName; + + private global::System.Data.DataColumn columnMothersName; + + private global::System.Data.DataColumn columnSpouse; + + private global::System.Data.DataColumn columnTempVill; + + private global::System.Data.DataColumn columnTempPost; + + private global::System.Data.DataColumn columnTempPS; + + private global::System.Data.DataColumn columnTempDist; + + private global::System.Data.DataColumn columnPerVill; + + private global::System.Data.DataColumn columnPerPost; + + private global::System.Data.DataColumn columnPerPS; + + private global::System.Data.DataColumn columnPerDist; + + private global::System.Data.DataColumn columnCategory; + + private global::System.Data.DataColumn columnBanglaName; + + private global::System.Data.DataColumn columnBanglaDesignation; + + private global::System.Data.DataColumn columnDepartmentBangla; + + private global::System.Data.DataColumn columnSectionBangla; + + private global::System.Data.DataColumn columnLANDPHONE; + + private global::System.Data.DataColumn columnOFFICEMOBILE; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailDataTable() { + this.TableName = "EmployeeDetail"; + this.BeginInit(); + this.InitClass(); + this.EndInit(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal EmployeeDetailDataTable(global::System.Data.DataTable table) { + this.TableName = table.TableName; + if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { + this.CaseSensitive = table.CaseSensitive; + } + if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { + this.Locale = table.Locale; + } + if ((table.Namespace != table.DataSet.Namespace)) { + this.Namespace = table.Namespace; + } + this.Prefix = table.Prefix; + this.MinimumCapacity = table.MinimumCapacity; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected EmployeeDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : + base(info, context) { + this.InitVars(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn EmpNoColumn { + get { + return this.columnEmpNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn NameColumn { + get { + return this.columnName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DesignationColumn { + get { + return this.columnDesignation; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DepartmentColumn { + get { + return this.columnDepartment; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GradeColumn { + get { + return this.columnGrade; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BasicSalaryColumn { + get { + return this.columnBasicSalary; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DOBColumn { + get { + return this.columnDOB; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GenderColumn { + get { + return this.columnGender; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn ReligionColumn { + get { + return this.columnReligion; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BankColumn { + get { + return this.columnBank; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BranchColumn { + get { + return this.columnBranch; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn AccountNoColumn { + get { + return this.columnAccountNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DOJColumn { + get { + return this.columnDOJ; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn ConfirmDateColumn { + get { + return this.columnConfirmDate; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TaxAmountColumn { + get { + return this.columnTaxAmount; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MarStatusColumn { + get { + return this.columnMarStatus; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MobileNoColumn { + get { + return this.columnMobileNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MailAddColumn { + get { + return this.columnMailAdd; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LocDesColumn { + get { + return this.columnLocDes; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GrossSalaryColumn { + get { + return this.columnGrossSalary; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn VendorCodeColumn { + get { + return this.columnVendorCode; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BankOPIColumn { + get { + return this.columnBankOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BranchOPIColumn { + get { + return this.columnBranchOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn AccountNoOPIColumn { + get { + return this.columnAccountNoOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn FloorColumn { + get { + return this.columnFloor; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SectionColumn { + get { + return this.columnSection; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LineColumn { + get { + return this.columnLine; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn RFIDColumn { + get { + return this.columnRFID; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BloodGroupColumn { + get { + return this.columnBloodGroup; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn QualificationColumn { + get { + return this.columnQualification; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn VotterIDColumn { + get { + return this.columnVotterID; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn NationalityColumn { + get { + return this.columnNationality; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn FathersNameColumn { + get { + return this.columnFathersName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MothersNameColumn { + get { + return this.columnMothersName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SpouseColumn { + get { + return this.columnSpouse; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempVillColumn { + get { + return this.columnTempVill; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempPostColumn { + get { + return this.columnTempPost; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempPSColumn { + get { + return this.columnTempPS; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempDistColumn { + get { + return this.columnTempDist; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerVillColumn { + get { + return this.columnPerVill; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerPostColumn { + get { + return this.columnPerPost; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerPSColumn { + get { + return this.columnPerPS; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerDistColumn { + get { + return this.columnPerDist; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn CategoryColumn { + get { + return this.columnCategory; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BanglaNameColumn { + get { + return this.columnBanglaName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BanglaDesignationColumn { + get { + return this.columnBanglaDesignation; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DepartmentBanglaColumn { + get { + return this.columnDepartmentBangla; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SectionBanglaColumn { + get { + return this.columnSectionBangla; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LANDPHONEColumn { + get { + return this.columnLANDPHONE; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn OFFICEMOBILEColumn { + get { + return this.columnOFFICEMOBILE; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Browsable(false)] + public int Count { + get { + return this.Rows.Count; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailRow this[int index] { + get { + return ((EmployeeDetailRow)(this.Rows[index])); + } + } + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailRowChangeEventHandler EmployeeDetailRowChanging; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailRowChangeEventHandler EmployeeDetailRowChanged; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailRowChangeEventHandler EmployeeDetailRowDeleting; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailRowChangeEventHandler EmployeeDetailRowDeleted; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void AddEmployeeDetailRow(EmployeeDetailRow row) { + this.Rows.Add(row); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailRow AddEmployeeDetailRow( + string EmpNo, + string Name, + string Designation, + string Department, + string Grade, + double BasicSalary, + System.DateTime DOB, + string Gender, + string Religion, + string Bank, + string Branch, + string AccountNo, + System.DateTime DOJ, + System.DateTime ConfirmDate, + string TaxAmount, + string MarStatus, + string MobileNo, + string MailAdd, + string LocDes, + double GrossSalary, + string VendorCode, + string BankOPI, + string BranchOPI, + string AccountNoOPI, + string Floor, + string Section, + string Line, + string RFID, + string BloodGroup, + string Qualification, + string VotterID, + string Nationality, + string FathersName, + string MothersName, + string Spouse, + string TempVill, + string TempPost, + string TempPS, + string TempDist, + string PerVill, + string PerPost, + string PerPS, + string PerDist, + string Category, + string BanglaName, + string BanglaDesignation, + string DepartmentBangla, + string SectionBangla, + string LANDPHONE, + string OFFICEMOBILE) { + EmployeeDetailRow rowEmployeeDetailRow = ((EmployeeDetailRow)(this.NewRow())); + object[] columnValuesArray = new object[] { + EmpNo, + Name, + Designation, + Department, + Grade, + BasicSalary, + DOB, + Gender, + Religion, + Bank, + Branch, + AccountNo, + DOJ, + ConfirmDate, + TaxAmount, + MarStatus, + MobileNo, + MailAdd, + LocDes, + GrossSalary, + VendorCode, + BankOPI, + BranchOPI, + AccountNoOPI, + Floor, + Section, + Line, + RFID, + BloodGroup, + Qualification, + VotterID, + Nationality, + FathersName, + MothersName, + Spouse, + TempVill, + TempPost, + TempPS, + TempDist, + PerVill, + PerPost, + PerPS, + PerDist, + Category, + BanglaName, + BanglaDesignation, + DepartmentBangla, + SectionBangla, + LANDPHONE, + OFFICEMOBILE}; + rowEmployeeDetailRow.ItemArray = columnValuesArray; + this.Rows.Add(rowEmployeeDetailRow); + return rowEmployeeDetailRow; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public override global::System.Data.DataTable Clone() { + EmployeeDetailDataTable cln = ((EmployeeDetailDataTable)(base.Clone())); + cln.InitVars(); + return cln; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Data.DataTable CreateInstance() { + return new EmployeeDetailDataTable(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal void InitVars() { + this.columnEmpNo = base.Columns["EmpNo"]; + this.columnName = base.Columns["Name"]; + this.columnDesignation = base.Columns["Designation"]; + this.columnDepartment = base.Columns["Department"]; + this.columnGrade = base.Columns["Grade"]; + this.columnBasicSalary = base.Columns["BasicSalary"]; + this.columnDOB = base.Columns["DOB"]; + this.columnGender = base.Columns["Gender"]; + this.columnReligion = base.Columns["Religion"]; + this.columnBank = base.Columns["Bank"]; + this.columnBranch = base.Columns["Branch"]; + this.columnAccountNo = base.Columns["AccountNo"]; + this.columnDOJ = base.Columns["DOJ"]; + this.columnConfirmDate = base.Columns["ConfirmDate"]; + this.columnTaxAmount = base.Columns["TaxAmount"]; + this.columnMarStatus = base.Columns["MarStatus"]; + this.columnMobileNo = base.Columns["MobileNo"]; + this.columnMailAdd = base.Columns["MailAdd"]; + this.columnLocDes = base.Columns["LocDes"]; + this.columnGrossSalary = base.Columns["GrossSalary"]; + this.columnVendorCode = base.Columns["VendorCode"]; + this.columnBankOPI = base.Columns["BankOPI"]; + this.columnBranchOPI = base.Columns["BranchOPI"]; + this.columnAccountNoOPI = base.Columns["AccountNoOPI"]; + this.columnFloor = base.Columns["Floor"]; + this.columnSection = base.Columns["Section"]; + this.columnLine = base.Columns["Line"]; + this.columnRFID = base.Columns["RFID"]; + this.columnBloodGroup = base.Columns["BloodGroup"]; + this.columnQualification = base.Columns["Qualification"]; + this.columnVotterID = base.Columns["VotterID"]; + this.columnNationality = base.Columns["Nationality"]; + this.columnFathersName = base.Columns["FathersName"]; + this.columnMothersName = base.Columns["MothersName"]; + this.columnSpouse = base.Columns["Spouse"]; + this.columnTempVill = base.Columns["TempVill"]; + this.columnTempPost = base.Columns["TempPost"]; + this.columnTempPS = base.Columns["TempPS"]; + this.columnTempDist = base.Columns["TempDist"]; + this.columnPerVill = base.Columns["PerVill"]; + this.columnPerPost = base.Columns["PerPost"]; + this.columnPerPS = base.Columns["PerPS"]; + this.columnPerDist = base.Columns["PerDist"]; + this.columnCategory = base.Columns["Category"]; + this.columnBanglaName = base.Columns["BanglaName"]; + this.columnBanglaDesignation = base.Columns["BanglaDesignation"]; + this.columnDepartmentBangla = base.Columns["DepartmentBangla"]; + this.columnSectionBangla = base.Columns["SectionBangla"]; + this.columnLANDPHONE = base.Columns["LANDPHONE"]; + this.columnOFFICEMOBILE = base.Columns["OFFICEMOBILE"]; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + private void InitClass() { + this.columnEmpNo = new global::System.Data.DataColumn("EmpNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnEmpNo); + this.columnName = new global::System.Data.DataColumn("Name", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnName); + this.columnDesignation = new global::System.Data.DataColumn("Designation", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDesignation); + this.columnDepartment = new global::System.Data.DataColumn("Department", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDepartment); + this.columnGrade = new global::System.Data.DataColumn("Grade", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGrade); + this.columnBasicSalary = new global::System.Data.DataColumn("BasicSalary", typeof(double), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBasicSalary); + this.columnDOB = new global::System.Data.DataColumn("DOB", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDOB); + this.columnGender = new global::System.Data.DataColumn("Gender", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGender); + this.columnReligion = new global::System.Data.DataColumn("Religion", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnReligion); + this.columnBank = new global::System.Data.DataColumn("Bank", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBank); + this.columnBranch = new global::System.Data.DataColumn("Branch", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBranch); + this.columnAccountNo = new global::System.Data.DataColumn("AccountNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnAccountNo); + this.columnDOJ = new global::System.Data.DataColumn("DOJ", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDOJ); + this.columnConfirmDate = new global::System.Data.DataColumn("ConfirmDate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnConfirmDate); + this.columnTaxAmount = new global::System.Data.DataColumn("TaxAmount", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTaxAmount); + this.columnMarStatus = new global::System.Data.DataColumn("MarStatus", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMarStatus); + this.columnMobileNo = new global::System.Data.DataColumn("MobileNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMobileNo); + this.columnMailAdd = new global::System.Data.DataColumn("MailAdd", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMailAdd); + this.columnLocDes = new global::System.Data.DataColumn("LocDes", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLocDes); + this.columnGrossSalary = new global::System.Data.DataColumn("GrossSalary", typeof(double), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGrossSalary); + this.columnVendorCode = new global::System.Data.DataColumn("VendorCode", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnVendorCode); + this.columnBankOPI = new global::System.Data.DataColumn("BankOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBankOPI); + this.columnBranchOPI = new global::System.Data.DataColumn("BranchOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBranchOPI); + this.columnAccountNoOPI = new global::System.Data.DataColumn("AccountNoOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnAccountNoOPI); + this.columnFloor = new global::System.Data.DataColumn("Floor", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnFloor); + this.columnSection = new global::System.Data.DataColumn("Section", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSection); + this.columnLine = new global::System.Data.DataColumn("Line", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLine); + this.columnRFID = new global::System.Data.DataColumn("RFID", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnRFID); + this.columnBloodGroup = new global::System.Data.DataColumn("BloodGroup", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBloodGroup); + this.columnQualification = new global::System.Data.DataColumn("Qualification", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnQualification); + this.columnVotterID = new global::System.Data.DataColumn("VotterID", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnVotterID); + this.columnNationality = new global::System.Data.DataColumn("Nationality", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnNationality); + this.columnFathersName = new global::System.Data.DataColumn("FathersName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnFathersName); + this.columnMothersName = new global::System.Data.DataColumn("MothersName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMothersName); + this.columnSpouse = new global::System.Data.DataColumn("Spouse", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSpouse); + this.columnTempVill = new global::System.Data.DataColumn("TempVill", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempVill); + this.columnTempPost = new global::System.Data.DataColumn("TempPost", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempPost); + this.columnTempPS = new global::System.Data.DataColumn("TempPS", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempPS); + this.columnTempDist = new global::System.Data.DataColumn("TempDist", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempDist); + this.columnPerVill = new global::System.Data.DataColumn("PerVill", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerVill); + this.columnPerPost = new global::System.Data.DataColumn("PerPost", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerPost); + this.columnPerPS = new global::System.Data.DataColumn("PerPS", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerPS); + this.columnPerDist = new global::System.Data.DataColumn("PerDist", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerDist); + this.columnCategory = new global::System.Data.DataColumn("Category", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnCategory); + this.columnBanglaName = new global::System.Data.DataColumn("BanglaName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBanglaName); + this.columnBanglaDesignation = new global::System.Data.DataColumn("BanglaDesignation", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBanglaDesignation); + this.columnDepartmentBangla = new global::System.Data.DataColumn("DepartmentBangla", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDepartmentBangla); + this.columnSectionBangla = new global::System.Data.DataColumn("SectionBangla", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSectionBangla); + this.columnLANDPHONE = new global::System.Data.DataColumn("LANDPHONE", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLANDPHONE); + this.columnOFFICEMOBILE = new global::System.Data.DataColumn("OFFICEMOBILE", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnOFFICEMOBILE); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailRow NewEmployeeDetailRow() { + return ((EmployeeDetailRow)(this.NewRow())); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { + return new EmployeeDetailRow(builder); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Type GetRowType() { + return typeof(EmployeeDetailRow); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowChanged(e); + if ((this.EmployeeDetailRowChanged != null)) { + this.EmployeeDetailRowChanged(this, new EmployeeDetailRowChangeEvent(((EmployeeDetailRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowChanging(e); + if ((this.EmployeeDetailRowChanging != null)) { + this.EmployeeDetailRowChanging(this, new EmployeeDetailRowChangeEvent(((EmployeeDetailRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowDeleted(e); + if ((this.EmployeeDetailRowDeleted != null)) { + this.EmployeeDetailRowDeleted(this, new EmployeeDetailRowChangeEvent(((EmployeeDetailRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowDeleting(e); + if ((this.EmployeeDetailRowDeleting != null)) { + this.EmployeeDetailRowDeleting(this, new EmployeeDetailRowChangeEvent(((EmployeeDetailRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void RemoveEmployeeDetailRow(EmployeeDetailRow row) { + this.Rows.Remove(row); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { + global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); + global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); + PMPDataSet ds = new PMPDataSet(); + global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); + any1.Namespace = "http://www.w3.org/2001/XMLSchema"; + any1.MinOccurs = new decimal(0); + any1.MaxOccurs = decimal.MaxValue; + any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; + sequence.Items.Add(any1); + global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); + any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; + any2.MinOccurs = new decimal(1); + any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; + sequence.Items.Add(any2); + global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); + attribute1.Name = "namespace"; + attribute1.FixedValue = ds.Namespace; + type.Attributes.Add(attribute1); + global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); + attribute2.Name = "tableTypeName"; + attribute2.FixedValue = "EmployeeDetailDataTable"; + type.Attributes.Add(attribute2); + type.Particle = sequence; + global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); + if (xs.Contains(dsSchema.TargetNamespace)) { + global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); + global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); + try { + global::System.Xml.Schema.XmlSchema schema = null; + dsSchema.Write(s1); + for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { + schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); + s2.SetLength(0); + schema.Write(s2); + if ((s1.Length == s2.Length)) { + s1.Position = 0; + s2.Position = 0; + for (; ((s1.Position != s1.Length) + && (s1.ReadByte() == s2.ReadByte())); ) { + ; + } + if ((s1.Position == s1.Length)) { + return type; + } + } + } + } + finally { + if ((s1 != null)) { + s1.Close(); + } + if ((s2 != null)) { + s2.Close(); + } + } + } + xs.Add(dsSchema); + return type; + } + } + /// ///Represents strongly named DataRow class. /// @@ -1005,14 +2023,14 @@ namespace HRM.Report.PayrollDataSet { private dtObjectivePercentageDataTable tabledtObjectivePercentage; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal dtObjectivePercentageRow(global::System.Data.DataRowBuilder rb) : base(rb) { this.tabledtObjectivePercentage = ((dtObjectivePercentageDataTable)(this.Table)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Category { get { try { @@ -1028,7 +2046,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Type { get { try { @@ -1044,7 +2062,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ObjectiveSettingMoS { get { try { @@ -1061,7 +2079,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string DevelopmentPlanMos { get { try { @@ -1078,7 +2096,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int Percentage { get { try { @@ -1094,7 +2112,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string RowNo { get { try { @@ -1110,73 +2128,73 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCategoryNull() { return this.IsNull(this.tabledtObjectivePercentage.CategoryColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCategoryNull() { this[this.tabledtObjectivePercentage.CategoryColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsTypeNull() { return this.IsNull(this.tabledtObjectivePercentage.TypeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetTypeNull() { this[this.tabledtObjectivePercentage.TypeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsObjectiveSettingMoSNull() { return this.IsNull(this.tabledtObjectivePercentage.ObjectiveSettingMoSColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetObjectiveSettingMoSNull() { this[this.tabledtObjectivePercentage.ObjectiveSettingMoSColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsDevelopmentPlanMosNull() { return this.IsNull(this.tabledtObjectivePercentage.DevelopmentPlanMosColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetDevelopmentPlanMosNull() { this[this.tabledtObjectivePercentage.DevelopmentPlanMosColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsPercentageNull() { return this.IsNull(this.tabledtObjectivePercentage.PercentageColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetPercentageNull() { this[this.tabledtObjectivePercentage.PercentageColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsRowNoNull() { return this.IsNull(this.tabledtObjectivePercentage.RowNoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetRowNoNull() { this[this.tabledtObjectivePercentage.RowNoColumn] = global::System.Convert.DBNull; } @@ -1190,14 +2208,14 @@ namespace HRM.Report.PayrollDataSet { private dtPMPObjectiveDataDataTable tabledtPMPObjectiveData; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal dtPMPObjectiveDataRow(global::System.Data.DataRowBuilder rb) : base(rb) { this.tabledtPMPObjectiveData = ((dtPMPObjectiveDataDataTable)(this.Table)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EmployeeNo { get { try { @@ -1213,7 +2231,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Name { get { try { @@ -1229,7 +2247,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Band { get { try { @@ -1245,7 +2263,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Department { get { try { @@ -1261,7 +2279,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Designation { get { try { @@ -1277,7 +2295,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string KPI_Title { get { try { @@ -1293,7 +2311,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string KPI_Description { get { try { @@ -1309,7 +2327,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string KPI_Thresholds { get { try { @@ -1325,7 +2343,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string KPI_Thresholds2 { get { try { @@ -1341,7 +2359,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string Weightages { get { try { @@ -1357,130 +2375,1545 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEmployeeNoNull() { return this.IsNull(this.tabledtPMPObjectiveData.EmployeeNoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEmployeeNoNull() { this[this.tabledtPMPObjectiveData.EmployeeNoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsNameNull() { return this.IsNull(this.tabledtPMPObjectiveData.NameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetNameNull() { this[this.tabledtPMPObjectiveData.NameColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsBandNull() { return this.IsNull(this.tabledtPMPObjectiveData.BandColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetBandNull() { this[this.tabledtPMPObjectiveData.BandColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsDepartmentNull() { return this.IsNull(this.tabledtPMPObjectiveData.DepartmentColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetDepartmentNull() { this[this.tabledtPMPObjectiveData.DepartmentColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsDesignationNull() { return this.IsNull(this.tabledtPMPObjectiveData.DesignationColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetDesignationNull() { this[this.tabledtPMPObjectiveData.DesignationColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsKPI_TitleNull() { return this.IsNull(this.tabledtPMPObjectiveData.KPI_TitleColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetKPI_TitleNull() { this[this.tabledtPMPObjectiveData.KPI_TitleColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsKPI_DescriptionNull() { return this.IsNull(this.tabledtPMPObjectiveData.KPI_DescriptionColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetKPI_DescriptionNull() { this[this.tabledtPMPObjectiveData.KPI_DescriptionColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsKPI_ThresholdsNull() { return this.IsNull(this.tabledtPMPObjectiveData.KPI_ThresholdsColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetKPI_ThresholdsNull() { this[this.tabledtPMPObjectiveData.KPI_ThresholdsColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsKPI_Thresholds2Null() { return this.IsNull(this.tabledtPMPObjectiveData.KPI_Thresholds2Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetKPI_Thresholds2Null() { this[this.tabledtPMPObjectiveData.KPI_Thresholds2Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsWeightagesNull() { return this.IsNull(this.tabledtPMPObjectiveData.WeightagesColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetWeightagesNull() { this[this.tabledtPMPObjectiveData.WeightagesColumn] = global::System.Convert.DBNull; } } + /// + ///Represents strongly named DataRow class. + /// + public partial class EmployeeDetailRow : global::System.Data.DataRow { + + private EmployeeDetailDataTable tableEmployeeDetail; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal EmployeeDetailRow(global::System.Data.DataRowBuilder rb) : + base(rb) { + this.tableEmployeeDetail = ((EmployeeDetailDataTable)(this.Table)); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string EmpNo { + get { + try { + return ((string)(this[this.tableEmployeeDetail.EmpNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'EmpNo\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.EmpNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Name { + get { + try { + return ((string)(this[this.tableEmployeeDetail.NameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Name\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.NameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Designation { + get { + try { + return ((string)(this[this.tableEmployeeDetail.DesignationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Designation\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.DesignationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Department { + get { + try { + return ((string)(this[this.tableEmployeeDetail.DepartmentColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Department\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.DepartmentColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Grade { + get { + try { + return ((string)(this[this.tableEmployeeDetail.GradeColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Grade\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.GradeColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public double BasicSalary { + get { + try { + return ((double)(this[this.tableEmployeeDetail.BasicSalaryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BasicSalary\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BasicSalaryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime DOB { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetail.DOBColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DOB\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.DOBColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Gender { + get { + try { + return ((string)(this[this.tableEmployeeDetail.GenderColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Gender\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.GenderColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Religion { + get { + try { + return ((string)(this[this.tableEmployeeDetail.ReligionColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Religion\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.ReligionColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Bank { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BankColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Bank\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BankColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Branch { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BranchColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Branch\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BranchColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string AccountNo { + get { + try { + return ((string)(this[this.tableEmployeeDetail.AccountNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'AccountNo\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.AccountNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime DOJ { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetail.DOJColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DOJ\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.DOJColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime ConfirmDate { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetail.ConfirmDateColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'ConfirmDate\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.ConfirmDateColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TaxAmount { + get { + try { + return ((string)(this[this.tableEmployeeDetail.TaxAmountColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TaxAmount\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.TaxAmountColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MarStatus { + get { + try { + return ((string)(this[this.tableEmployeeDetail.MarStatusColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MarStatus\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.MarStatusColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MobileNo { + get { + try { + return ((string)(this[this.tableEmployeeDetail.MobileNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MobileNo\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.MobileNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MailAdd { + get { + try { + return ((string)(this[this.tableEmployeeDetail.MailAddColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MailAdd\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.MailAddColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string LocDes { + get { + try { + return ((string)(this[this.tableEmployeeDetail.LocDesColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'LocDes\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.LocDesColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public double GrossSalary { + get { + try { + return ((double)(this[this.tableEmployeeDetail.GrossSalaryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'GrossSalary\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.GrossSalaryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string VendorCode { + get { + try { + return ((string)(this[this.tableEmployeeDetail.VendorCodeColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'VendorCode\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.VendorCodeColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BankOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BankOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BankOPI\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BankOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BranchOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BranchOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BranchOPI\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BranchOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string AccountNoOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetail.AccountNoOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'AccountNoOPI\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.AccountNoOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Floor { + get { + try { + return ((string)(this[this.tableEmployeeDetail.FloorColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Floor\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.FloorColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Section { + get { + try { + return ((string)(this[this.tableEmployeeDetail.SectionColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Section\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.SectionColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Line { + get { + try { + return ((string)(this[this.tableEmployeeDetail.LineColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Line\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.LineColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string RFID { + get { + try { + return ((string)(this[this.tableEmployeeDetail.RFIDColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'RFID\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.RFIDColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BloodGroup { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BloodGroupColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BloodGroup\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BloodGroupColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Qualification { + get { + try { + return ((string)(this[this.tableEmployeeDetail.QualificationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Qualification\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.QualificationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string VotterID { + get { + try { + return ((string)(this[this.tableEmployeeDetail.VotterIDColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'VotterID\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.VotterIDColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Nationality { + get { + try { + return ((string)(this[this.tableEmployeeDetail.NationalityColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Nationality\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.NationalityColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string FathersName { + get { + try { + return ((string)(this[this.tableEmployeeDetail.FathersNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'FathersName\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.FathersNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MothersName { + get { + try { + return ((string)(this[this.tableEmployeeDetail.MothersNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MothersName\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.MothersNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Spouse { + get { + try { + return ((string)(this[this.tableEmployeeDetail.SpouseColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Spouse\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.SpouseColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempVill { + get { + try { + return ((string)(this[this.tableEmployeeDetail.TempVillColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempVill\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.TempVillColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempPost { + get { + try { + return ((string)(this[this.tableEmployeeDetail.TempPostColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempPost\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.TempPostColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempPS { + get { + try { + return ((string)(this[this.tableEmployeeDetail.TempPSColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempPS\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.TempPSColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempDist { + get { + try { + return ((string)(this[this.tableEmployeeDetail.TempDistColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempDist\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.TempDistColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerVill { + get { + try { + return ((string)(this[this.tableEmployeeDetail.PerVillColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerVill\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.PerVillColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerPost { + get { + try { + return ((string)(this[this.tableEmployeeDetail.PerPostColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerPost\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.PerPostColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerPS { + get { + try { + return ((string)(this[this.tableEmployeeDetail.PerPSColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerPS\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.PerPSColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerDist { + get { + try { + return ((string)(this[this.tableEmployeeDetail.PerDistColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerDist\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.PerDistColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Category { + get { + try { + return ((string)(this[this.tableEmployeeDetail.CategoryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Category\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.CategoryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BanglaName { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BanglaNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BanglaName\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BanglaNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BanglaDesignation { + get { + try { + return ((string)(this[this.tableEmployeeDetail.BanglaDesignationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BanglaDesignation\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.BanglaDesignationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string DepartmentBangla { + get { + try { + return ((string)(this[this.tableEmployeeDetail.DepartmentBanglaColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DepartmentBangla\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.DepartmentBanglaColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string SectionBangla { + get { + try { + return ((string)(this[this.tableEmployeeDetail.SectionBanglaColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'SectionBangla\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.SectionBanglaColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string LANDPHONE { + get { + try { + return ((string)(this[this.tableEmployeeDetail.LANDPHONEColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'LANDPHONE\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.LANDPHONEColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string OFFICEMOBILE { + get { + try { + return ((string)(this[this.tableEmployeeDetail.OFFICEMOBILEColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'OFFICEMOBILE\' in table \'EmployeeDetail\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetail.OFFICEMOBILEColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsEmpNoNull() { + return this.IsNull(this.tableEmployeeDetail.EmpNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetEmpNoNull() { + this[this.tableEmployeeDetail.EmpNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsNameNull() { + return this.IsNull(this.tableEmployeeDetail.NameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetNameNull() { + this[this.tableEmployeeDetail.NameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDesignationNull() { + return this.IsNull(this.tableEmployeeDetail.DesignationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDesignationNull() { + this[this.tableEmployeeDetail.DesignationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDepartmentNull() { + return this.IsNull(this.tableEmployeeDetail.DepartmentColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDepartmentNull() { + this[this.tableEmployeeDetail.DepartmentColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGradeNull() { + return this.IsNull(this.tableEmployeeDetail.GradeColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGradeNull() { + this[this.tableEmployeeDetail.GradeColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBasicSalaryNull() { + return this.IsNull(this.tableEmployeeDetail.BasicSalaryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBasicSalaryNull() { + this[this.tableEmployeeDetail.BasicSalaryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDOBNull() { + return this.IsNull(this.tableEmployeeDetail.DOBColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDOBNull() { + this[this.tableEmployeeDetail.DOBColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGenderNull() { + return this.IsNull(this.tableEmployeeDetail.GenderColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGenderNull() { + this[this.tableEmployeeDetail.GenderColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsReligionNull() { + return this.IsNull(this.tableEmployeeDetail.ReligionColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetReligionNull() { + this[this.tableEmployeeDetail.ReligionColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBankNull() { + return this.IsNull(this.tableEmployeeDetail.BankColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBankNull() { + this[this.tableEmployeeDetail.BankColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBranchNull() { + return this.IsNull(this.tableEmployeeDetail.BranchColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBranchNull() { + this[this.tableEmployeeDetail.BranchColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsAccountNoNull() { + return this.IsNull(this.tableEmployeeDetail.AccountNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetAccountNoNull() { + this[this.tableEmployeeDetail.AccountNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDOJNull() { + return this.IsNull(this.tableEmployeeDetail.DOJColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDOJNull() { + this[this.tableEmployeeDetail.DOJColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsConfirmDateNull() { + return this.IsNull(this.tableEmployeeDetail.ConfirmDateColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetConfirmDateNull() { + this[this.tableEmployeeDetail.ConfirmDateColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTaxAmountNull() { + return this.IsNull(this.tableEmployeeDetail.TaxAmountColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTaxAmountNull() { + this[this.tableEmployeeDetail.TaxAmountColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMarStatusNull() { + return this.IsNull(this.tableEmployeeDetail.MarStatusColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMarStatusNull() { + this[this.tableEmployeeDetail.MarStatusColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMobileNoNull() { + return this.IsNull(this.tableEmployeeDetail.MobileNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMobileNoNull() { + this[this.tableEmployeeDetail.MobileNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMailAddNull() { + return this.IsNull(this.tableEmployeeDetail.MailAddColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMailAddNull() { + this[this.tableEmployeeDetail.MailAddColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLocDesNull() { + return this.IsNull(this.tableEmployeeDetail.LocDesColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLocDesNull() { + this[this.tableEmployeeDetail.LocDesColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGrossSalaryNull() { + return this.IsNull(this.tableEmployeeDetail.GrossSalaryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGrossSalaryNull() { + this[this.tableEmployeeDetail.GrossSalaryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsVendorCodeNull() { + return this.IsNull(this.tableEmployeeDetail.VendorCodeColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetVendorCodeNull() { + this[this.tableEmployeeDetail.VendorCodeColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBankOPINull() { + return this.IsNull(this.tableEmployeeDetail.BankOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBankOPINull() { + this[this.tableEmployeeDetail.BankOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBranchOPINull() { + return this.IsNull(this.tableEmployeeDetail.BranchOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBranchOPINull() { + this[this.tableEmployeeDetail.BranchOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsAccountNoOPINull() { + return this.IsNull(this.tableEmployeeDetail.AccountNoOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetAccountNoOPINull() { + this[this.tableEmployeeDetail.AccountNoOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsFloorNull() { + return this.IsNull(this.tableEmployeeDetail.FloorColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetFloorNull() { + this[this.tableEmployeeDetail.FloorColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSectionNull() { + return this.IsNull(this.tableEmployeeDetail.SectionColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSectionNull() { + this[this.tableEmployeeDetail.SectionColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLineNull() { + return this.IsNull(this.tableEmployeeDetail.LineColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLineNull() { + this[this.tableEmployeeDetail.LineColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsRFIDNull() { + return this.IsNull(this.tableEmployeeDetail.RFIDColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetRFIDNull() { + this[this.tableEmployeeDetail.RFIDColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBloodGroupNull() { + return this.IsNull(this.tableEmployeeDetail.BloodGroupColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBloodGroupNull() { + this[this.tableEmployeeDetail.BloodGroupColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsQualificationNull() { + return this.IsNull(this.tableEmployeeDetail.QualificationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetQualificationNull() { + this[this.tableEmployeeDetail.QualificationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsVotterIDNull() { + return this.IsNull(this.tableEmployeeDetail.VotterIDColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetVotterIDNull() { + this[this.tableEmployeeDetail.VotterIDColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsNationalityNull() { + return this.IsNull(this.tableEmployeeDetail.NationalityColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetNationalityNull() { + this[this.tableEmployeeDetail.NationalityColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsFathersNameNull() { + return this.IsNull(this.tableEmployeeDetail.FathersNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetFathersNameNull() { + this[this.tableEmployeeDetail.FathersNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMothersNameNull() { + return this.IsNull(this.tableEmployeeDetail.MothersNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMothersNameNull() { + this[this.tableEmployeeDetail.MothersNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSpouseNull() { + return this.IsNull(this.tableEmployeeDetail.SpouseColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSpouseNull() { + this[this.tableEmployeeDetail.SpouseColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempVillNull() { + return this.IsNull(this.tableEmployeeDetail.TempVillColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempVillNull() { + this[this.tableEmployeeDetail.TempVillColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempPostNull() { + return this.IsNull(this.tableEmployeeDetail.TempPostColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempPostNull() { + this[this.tableEmployeeDetail.TempPostColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempPSNull() { + return this.IsNull(this.tableEmployeeDetail.TempPSColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempPSNull() { + this[this.tableEmployeeDetail.TempPSColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempDistNull() { + return this.IsNull(this.tableEmployeeDetail.TempDistColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempDistNull() { + this[this.tableEmployeeDetail.TempDistColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerVillNull() { + return this.IsNull(this.tableEmployeeDetail.PerVillColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerVillNull() { + this[this.tableEmployeeDetail.PerVillColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerPostNull() { + return this.IsNull(this.tableEmployeeDetail.PerPostColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerPostNull() { + this[this.tableEmployeeDetail.PerPostColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerPSNull() { + return this.IsNull(this.tableEmployeeDetail.PerPSColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerPSNull() { + this[this.tableEmployeeDetail.PerPSColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerDistNull() { + return this.IsNull(this.tableEmployeeDetail.PerDistColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerDistNull() { + this[this.tableEmployeeDetail.PerDistColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsCategoryNull() { + return this.IsNull(this.tableEmployeeDetail.CategoryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetCategoryNull() { + this[this.tableEmployeeDetail.CategoryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBanglaNameNull() { + return this.IsNull(this.tableEmployeeDetail.BanglaNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBanglaNameNull() { + this[this.tableEmployeeDetail.BanglaNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBanglaDesignationNull() { + return this.IsNull(this.tableEmployeeDetail.BanglaDesignationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBanglaDesignationNull() { + this[this.tableEmployeeDetail.BanglaDesignationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDepartmentBanglaNull() { + return this.IsNull(this.tableEmployeeDetail.DepartmentBanglaColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDepartmentBanglaNull() { + this[this.tableEmployeeDetail.DepartmentBanglaColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSectionBanglaNull() { + return this.IsNull(this.tableEmployeeDetail.SectionBanglaColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSectionBanglaNull() { + this[this.tableEmployeeDetail.SectionBanglaColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLANDPHONENull() { + return this.IsNull(this.tableEmployeeDetail.LANDPHONEColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLANDPHONENull() { + this[this.tableEmployeeDetail.LANDPHONEColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsOFFICEMOBILENull() { + return this.IsNull(this.tableEmployeeDetail.OFFICEMOBILEColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetOFFICEMOBILENull() { + this[this.tableEmployeeDetail.OFFICEMOBILEColumn] = global::System.Convert.DBNull; + } + } + /// ///Row event argument class /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public class dtObjectivePercentageRowChangeEvent : global::System.EventArgs { private dtObjectivePercentageRow eventRow; @@ -1488,14 +3921,14 @@ namespace HRM.Report.PayrollDataSet { private global::System.Data.DataRowAction eventAction; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageRowChangeEvent(dtObjectivePercentageRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtObjectivePercentageRow Row { get { return this.eventRow; @@ -1503,7 +3936,7 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataRowAction Action { get { return this.eventAction; @@ -1514,7 +3947,7 @@ namespace HRM.Report.PayrollDataSet { /// ///Row event argument class /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public class dtPMPObjectiveDataRowChangeEvent : global::System.EventArgs { private dtPMPObjectiveDataRow eventRow; @@ -1522,14 +3955,14 @@ namespace HRM.Report.PayrollDataSet { private global::System.Data.DataRowAction eventAction; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataRowChangeEvent(dtPMPObjectiveDataRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtPMPObjectiveDataRow Row { get { return this.eventRow; @@ -1537,7 +3970,41 @@ namespace HRM.Report.PayrollDataSet { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataRowAction Action { + get { + return this.eventAction; + } + } + } + + /// + ///Row event argument class + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public class EmployeeDetailRowChangeEvent : global::System.EventArgs { + + private EmployeeDetailRow eventRow; + + private global::System.Data.DataRowAction eventAction; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailRowChangeEvent(EmployeeDetailRow row, global::System.Data.DataRowAction action) { + this.eventRow = row; + this.eventAction = action; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailRow Row { + get { + return this.eventRow; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataRowAction Action { get { return this.eventAction; diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs b/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs index 0c0269f..1214403 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs @@ -388,6 +388,8 @@ namespace HRM.Report.PayrollDataSet { private DeletedLifeCycleDataTable tableDeletedLifeCycle; + private EmployeeDetailEchoDataTable tableEmployeeDetailEcho; + private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -962,6 +964,9 @@ namespace HRM.Report.PayrollDataSet { if ((ds.Tables["DeletedLifeCycle"] != null)) { base.Tables.Add(new DeletedLifeCycleDataTable(ds.Tables["DeletedLifeCycle"])); } + if ((ds.Tables["EmployeeDetailEcho"] != null)) { + base.Tables.Add(new EmployeeDetailEchoDataTable(ds.Tables["EmployeeDetailEcho"])); + } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; @@ -2800,6 +2805,16 @@ namespace HRM.Report.PayrollDataSet { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Browsable(false)] + [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] + public EmployeeDetailEchoDataTable EmployeeDetailEcho { + get { + return this.tableEmployeeDetailEcho; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.BrowsableAttribute(true)] @@ -3413,6 +3428,9 @@ namespace HRM.Report.PayrollDataSet { if ((ds.Tables["DeletedLifeCycle"] != null)) { base.Tables.Add(new DeletedLifeCycleDataTable(ds.Tables["DeletedLifeCycle"])); } + if ((ds.Tables["EmployeeDetailEcho"] != null)) { + base.Tables.Add(new EmployeeDetailEchoDataTable(ds.Tables["EmployeeDetailEcho"])); + } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; @@ -4538,6 +4556,12 @@ namespace HRM.Report.PayrollDataSet { this.tableDeletedLifeCycle.InitVars(); } } + this.tableEmployeeDetailEcho = ((EmployeeDetailEchoDataTable)(base.Tables["EmployeeDetailEcho"])); + if ((initTable == true)) { + if ((this.tableEmployeeDetailEcho != null)) { + this.tableEmployeeDetailEcho.InitVars(); + } + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -4912,6 +4936,8 @@ namespace HRM.Report.PayrollDataSet { base.Tables.Add(this.tableEmployeeInfoBasic); this.tableDeletedLifeCycle = new DeletedLifeCycleDataTable(); base.Tables.Add(this.tableDeletedLifeCycle); + this.tableEmployeeDetailEcho = new EmployeeDetailEchoDataTable(); + base.Tables.Add(this.tableEmployeeDetailEcho); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -6006,6 +6032,12 @@ namespace HRM.Report.PayrollDataSet { return false; } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + private bool ShouldSerializeEmployeeDetailEcho() { + return false; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { @@ -6607,6 +6639,9 @@ namespace HRM.Report.PayrollDataSet { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void DeletedLifeCycleRowChangeEventHandler(object sender, DeletedLifeCycleRowChangeEvent e); + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public delegate void EmployeeDetailEchoRowChangeEventHandler(object sender, EmployeeDetailEchoRowChangeEvent e); + /// ///Represents the strongly named DataTable class. /// @@ -81452,6 +81487,989 @@ namespace HRM.Report.PayrollDataSet { } } + /// + ///Represents the strongly named DataTable class. + /// + [global::System.Serializable()] + [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] + public partial class EmployeeDetailEchoDataTable : global::System.Data.TypedTableBase { + + private global::System.Data.DataColumn columnEmpNo; + + private global::System.Data.DataColumn columnName; + + private global::System.Data.DataColumn columnDesignation; + + private global::System.Data.DataColumn columnDepartment; + + private global::System.Data.DataColumn columnGrade; + + private global::System.Data.DataColumn columnBasicSalary; + + private global::System.Data.DataColumn columnDOB; + + private global::System.Data.DataColumn columnGender; + + private global::System.Data.DataColumn columnReligion; + + private global::System.Data.DataColumn columnBank; + + private global::System.Data.DataColumn columnBranch; + + private global::System.Data.DataColumn columnAccountNo; + + private global::System.Data.DataColumn columnDOJ; + + private global::System.Data.DataColumn columnConfirmDate; + + private global::System.Data.DataColumn columnTaxAmount; + + private global::System.Data.DataColumn columnMarStatus; + + private global::System.Data.DataColumn columnMobileNo; + + private global::System.Data.DataColumn columnMailAdd; + + private global::System.Data.DataColumn columnLocDes; + + private global::System.Data.DataColumn columnGrossSalary; + + private global::System.Data.DataColumn columnVendorCode; + + private global::System.Data.DataColumn columnBankOPI; + + private global::System.Data.DataColumn columnBranchOPI; + + private global::System.Data.DataColumn columnAccountNoOPI; + + private global::System.Data.DataColumn columnFloor; + + private global::System.Data.DataColumn columnSection; + + private global::System.Data.DataColumn columnLine; + + private global::System.Data.DataColumn columnRFID; + + private global::System.Data.DataColumn columnBloodGroup; + + private global::System.Data.DataColumn columnQualification; + + private global::System.Data.DataColumn columnVotterID; + + private global::System.Data.DataColumn columnNationality; + + private global::System.Data.DataColumn columnFathersName; + + private global::System.Data.DataColumn columnMothersName; + + private global::System.Data.DataColumn columnSpouse; + + private global::System.Data.DataColumn columnTempVill; + + private global::System.Data.DataColumn columnTempPost; + + private global::System.Data.DataColumn columnTempPS; + + private global::System.Data.DataColumn columnTempDist; + + private global::System.Data.DataColumn columnPerVill; + + private global::System.Data.DataColumn columnPerPost; + + private global::System.Data.DataColumn columnPerPS; + + private global::System.Data.DataColumn columnPerDist; + + private global::System.Data.DataColumn columnCategory; + + private global::System.Data.DataColumn columnBanglaName; + + private global::System.Data.DataColumn columnBanglaDesignation; + + private global::System.Data.DataColumn columnDepartmentBangla; + + private global::System.Data.DataColumn columnSectionBangla; + + private global::System.Data.DataColumn columnLANDPHONE; + + private global::System.Data.DataColumn columnOFFICEMOBILE; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoDataTable() { + this.TableName = "EmployeeDetailEcho"; + this.BeginInit(); + this.InitClass(); + this.EndInit(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal EmployeeDetailEchoDataTable(global::System.Data.DataTable table) { + this.TableName = table.TableName; + if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { + this.CaseSensitive = table.CaseSensitive; + } + if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { + this.Locale = table.Locale; + } + if ((table.Namespace != table.DataSet.Namespace)) { + this.Namespace = table.Namespace; + } + this.Prefix = table.Prefix; + this.MinimumCapacity = table.MinimumCapacity; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected EmployeeDetailEchoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : + base(info, context) { + this.InitVars(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn EmpNoColumn { + get { + return this.columnEmpNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn NameColumn { + get { + return this.columnName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DesignationColumn { + get { + return this.columnDesignation; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DepartmentColumn { + get { + return this.columnDepartment; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GradeColumn { + get { + return this.columnGrade; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BasicSalaryColumn { + get { + return this.columnBasicSalary; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DOBColumn { + get { + return this.columnDOB; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GenderColumn { + get { + return this.columnGender; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn ReligionColumn { + get { + return this.columnReligion; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BankColumn { + get { + return this.columnBank; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BranchColumn { + get { + return this.columnBranch; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn AccountNoColumn { + get { + return this.columnAccountNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DOJColumn { + get { + return this.columnDOJ; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn ConfirmDateColumn { + get { + return this.columnConfirmDate; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TaxAmountColumn { + get { + return this.columnTaxAmount; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MarStatusColumn { + get { + return this.columnMarStatus; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MobileNoColumn { + get { + return this.columnMobileNo; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MailAddColumn { + get { + return this.columnMailAdd; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LocDesColumn { + get { + return this.columnLocDes; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn GrossSalaryColumn { + get { + return this.columnGrossSalary; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn VendorCodeColumn { + get { + return this.columnVendorCode; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BankOPIColumn { + get { + return this.columnBankOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BranchOPIColumn { + get { + return this.columnBranchOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn AccountNoOPIColumn { + get { + return this.columnAccountNoOPI; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn FloorColumn { + get { + return this.columnFloor; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SectionColumn { + get { + return this.columnSection; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LineColumn { + get { + return this.columnLine; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn RFIDColumn { + get { + return this.columnRFID; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BloodGroupColumn { + get { + return this.columnBloodGroup; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn QualificationColumn { + get { + return this.columnQualification; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn VotterIDColumn { + get { + return this.columnVotterID; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn NationalityColumn { + get { + return this.columnNationality; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn FathersNameColumn { + get { + return this.columnFathersName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn MothersNameColumn { + get { + return this.columnMothersName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SpouseColumn { + get { + return this.columnSpouse; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempVillColumn { + get { + return this.columnTempVill; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempPostColumn { + get { + return this.columnTempPost; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempPSColumn { + get { + return this.columnTempPS; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn TempDistColumn { + get { + return this.columnTempDist; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerVillColumn { + get { + return this.columnPerVill; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerPostColumn { + get { + return this.columnPerPost; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerPSColumn { + get { + return this.columnPerPS; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn PerDistColumn { + get { + return this.columnPerDist; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn CategoryColumn { + get { + return this.columnCategory; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BanglaNameColumn { + get { + return this.columnBanglaName; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn BanglaDesignationColumn { + get { + return this.columnBanglaDesignation; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DepartmentBanglaColumn { + get { + return this.columnDepartmentBangla; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn SectionBanglaColumn { + get { + return this.columnSectionBangla; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn LANDPHONEColumn { + get { + return this.columnLANDPHONE; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn OFFICEMOBILEColumn { + get { + return this.columnOFFICEMOBILE; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Browsable(false)] + public int Count { + get { + return this.Rows.Count; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoRow this[int index] { + get { + return ((EmployeeDetailEchoRow)(this.Rows[index])); + } + } + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailEchoRowChangeEventHandler EmployeeDetailEchoRowChanging; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailEchoRowChangeEventHandler EmployeeDetailEchoRowChanged; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailEchoRowChangeEventHandler EmployeeDetailEchoRowDeleting; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public event EmployeeDetailEchoRowChangeEventHandler EmployeeDetailEchoRowDeleted; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void AddEmployeeDetailEchoRow(EmployeeDetailEchoRow row) { + this.Rows.Add(row); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoRow AddEmployeeDetailEchoRow( + string EmpNo, + string Name, + string Designation, + string Department, + string Grade, + double BasicSalary, + System.DateTime DOB, + string Gender, + string Religion, + string Bank, + string Branch, + string AccountNo, + System.DateTime DOJ, + System.DateTime ConfirmDate, + string TaxAmount, + string MarStatus, + string MobileNo, + string MailAdd, + string LocDes, + double GrossSalary, + string VendorCode, + string BankOPI, + string BranchOPI, + string AccountNoOPI, + string Floor, + string Section, + string Line, + string RFID, + string BloodGroup, + string Qualification, + string VotterID, + string Nationality, + string FathersName, + string MothersName, + string Spouse, + string TempVill, + string TempPost, + string TempPS, + string TempDist, + string PerVill, + string PerPost, + string PerPS, + string PerDist, + string Category, + string BanglaName, + string BanglaDesignation, + string DepartmentBangla, + string SectionBangla, + string LANDPHONE, + string OFFICEMOBILE) { + EmployeeDetailEchoRow rowEmployeeDetailEchoRow = ((EmployeeDetailEchoRow)(this.NewRow())); + object[] columnValuesArray = new object[] { + EmpNo, + Name, + Designation, + Department, + Grade, + BasicSalary, + DOB, + Gender, + Religion, + Bank, + Branch, + AccountNo, + DOJ, + ConfirmDate, + TaxAmount, + MarStatus, + MobileNo, + MailAdd, + LocDes, + GrossSalary, + VendorCode, + BankOPI, + BranchOPI, + AccountNoOPI, + Floor, + Section, + Line, + RFID, + BloodGroup, + Qualification, + VotterID, + Nationality, + FathersName, + MothersName, + Spouse, + TempVill, + TempPost, + TempPS, + TempDist, + PerVill, + PerPost, + PerPS, + PerDist, + Category, + BanglaName, + BanglaDesignation, + DepartmentBangla, + SectionBangla, + LANDPHONE, + OFFICEMOBILE}; + rowEmployeeDetailEchoRow.ItemArray = columnValuesArray; + this.Rows.Add(rowEmployeeDetailEchoRow); + return rowEmployeeDetailEchoRow; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public override global::System.Data.DataTable Clone() { + EmployeeDetailEchoDataTable cln = ((EmployeeDetailEchoDataTable)(base.Clone())); + cln.InitVars(); + return cln; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Data.DataTable CreateInstance() { + return new EmployeeDetailEchoDataTable(); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal void InitVars() { + this.columnEmpNo = base.Columns["EmpNo"]; + this.columnName = base.Columns["Name"]; + this.columnDesignation = base.Columns["Designation"]; + this.columnDepartment = base.Columns["Department"]; + this.columnGrade = base.Columns["Grade"]; + this.columnBasicSalary = base.Columns["BasicSalary"]; + this.columnDOB = base.Columns["DOB"]; + this.columnGender = base.Columns["Gender"]; + this.columnReligion = base.Columns["Religion"]; + this.columnBank = base.Columns["Bank"]; + this.columnBranch = base.Columns["Branch"]; + this.columnAccountNo = base.Columns["AccountNo"]; + this.columnDOJ = base.Columns["DOJ"]; + this.columnConfirmDate = base.Columns["ConfirmDate"]; + this.columnTaxAmount = base.Columns["TaxAmount"]; + this.columnMarStatus = base.Columns["MarStatus"]; + this.columnMobileNo = base.Columns["MobileNo"]; + this.columnMailAdd = base.Columns["MailAdd"]; + this.columnLocDes = base.Columns["LocDes"]; + this.columnGrossSalary = base.Columns["GrossSalary"]; + this.columnVendorCode = base.Columns["VendorCode"]; + this.columnBankOPI = base.Columns["BankOPI"]; + this.columnBranchOPI = base.Columns["BranchOPI"]; + this.columnAccountNoOPI = base.Columns["AccountNoOPI"]; + this.columnFloor = base.Columns["Floor"]; + this.columnSection = base.Columns["Section"]; + this.columnLine = base.Columns["Line"]; + this.columnRFID = base.Columns["RFID"]; + this.columnBloodGroup = base.Columns["BloodGroup"]; + this.columnQualification = base.Columns["Qualification"]; + this.columnVotterID = base.Columns["VotterID"]; + this.columnNationality = base.Columns["Nationality"]; + this.columnFathersName = base.Columns["FathersName"]; + this.columnMothersName = base.Columns["MothersName"]; + this.columnSpouse = base.Columns["Spouse"]; + this.columnTempVill = base.Columns["TempVill"]; + this.columnTempPost = base.Columns["TempPost"]; + this.columnTempPS = base.Columns["TempPS"]; + this.columnTempDist = base.Columns["TempDist"]; + this.columnPerVill = base.Columns["PerVill"]; + this.columnPerPost = base.Columns["PerPost"]; + this.columnPerPS = base.Columns["PerPS"]; + this.columnPerDist = base.Columns["PerDist"]; + this.columnCategory = base.Columns["Category"]; + this.columnBanglaName = base.Columns["BanglaName"]; + this.columnBanglaDesignation = base.Columns["BanglaDesignation"]; + this.columnDepartmentBangla = base.Columns["DepartmentBangla"]; + this.columnSectionBangla = base.Columns["SectionBangla"]; + this.columnLANDPHONE = base.Columns["LANDPHONE"]; + this.columnOFFICEMOBILE = base.Columns["OFFICEMOBILE"]; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + private void InitClass() { + this.columnEmpNo = new global::System.Data.DataColumn("EmpNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnEmpNo); + this.columnName = new global::System.Data.DataColumn("Name", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnName); + this.columnDesignation = new global::System.Data.DataColumn("Designation", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDesignation); + this.columnDepartment = new global::System.Data.DataColumn("Department", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDepartment); + this.columnGrade = new global::System.Data.DataColumn("Grade", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGrade); + this.columnBasicSalary = new global::System.Data.DataColumn("BasicSalary", typeof(double), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBasicSalary); + this.columnDOB = new global::System.Data.DataColumn("DOB", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDOB); + this.columnGender = new global::System.Data.DataColumn("Gender", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGender); + this.columnReligion = new global::System.Data.DataColumn("Religion", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnReligion); + this.columnBank = new global::System.Data.DataColumn("Bank", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBank); + this.columnBranch = new global::System.Data.DataColumn("Branch", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBranch); + this.columnAccountNo = new global::System.Data.DataColumn("AccountNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnAccountNo); + this.columnDOJ = new global::System.Data.DataColumn("DOJ", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDOJ); + this.columnConfirmDate = new global::System.Data.DataColumn("ConfirmDate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnConfirmDate); + this.columnTaxAmount = new global::System.Data.DataColumn("TaxAmount", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTaxAmount); + this.columnMarStatus = new global::System.Data.DataColumn("MarStatus", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMarStatus); + this.columnMobileNo = new global::System.Data.DataColumn("MobileNo", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMobileNo); + this.columnMailAdd = new global::System.Data.DataColumn("MailAdd", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMailAdd); + this.columnLocDes = new global::System.Data.DataColumn("LocDes", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLocDes); + this.columnGrossSalary = new global::System.Data.DataColumn("GrossSalary", typeof(double), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnGrossSalary); + this.columnVendorCode = new global::System.Data.DataColumn("VendorCode", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnVendorCode); + this.columnBankOPI = new global::System.Data.DataColumn("BankOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBankOPI); + this.columnBranchOPI = new global::System.Data.DataColumn("BranchOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBranchOPI); + this.columnAccountNoOPI = new global::System.Data.DataColumn("AccountNoOPI", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnAccountNoOPI); + this.columnFloor = new global::System.Data.DataColumn("Floor", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnFloor); + this.columnSection = new global::System.Data.DataColumn("Section", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSection); + this.columnLine = new global::System.Data.DataColumn("Line", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLine); + this.columnRFID = new global::System.Data.DataColumn("RFID", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnRFID); + this.columnBloodGroup = new global::System.Data.DataColumn("BloodGroup", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBloodGroup); + this.columnQualification = new global::System.Data.DataColumn("Qualification", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnQualification); + this.columnVotterID = new global::System.Data.DataColumn("VotterID", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnVotterID); + this.columnNationality = new global::System.Data.DataColumn("Nationality", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnNationality); + this.columnFathersName = new global::System.Data.DataColumn("FathersName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnFathersName); + this.columnMothersName = new global::System.Data.DataColumn("MothersName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnMothersName); + this.columnSpouse = new global::System.Data.DataColumn("Spouse", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSpouse); + this.columnTempVill = new global::System.Data.DataColumn("TempVill", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempVill); + this.columnTempPost = new global::System.Data.DataColumn("TempPost", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempPost); + this.columnTempPS = new global::System.Data.DataColumn("TempPS", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempPS); + this.columnTempDist = new global::System.Data.DataColumn("TempDist", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnTempDist); + this.columnPerVill = new global::System.Data.DataColumn("PerVill", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerVill); + this.columnPerPost = new global::System.Data.DataColumn("PerPost", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerPost); + this.columnPerPS = new global::System.Data.DataColumn("PerPS", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerPS); + this.columnPerDist = new global::System.Data.DataColumn("PerDist", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnPerDist); + this.columnCategory = new global::System.Data.DataColumn("Category", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnCategory); + this.columnBanglaName = new global::System.Data.DataColumn("BanglaName", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBanglaName); + this.columnBanglaDesignation = new global::System.Data.DataColumn("BanglaDesignation", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnBanglaDesignation); + this.columnDepartmentBangla = new global::System.Data.DataColumn("DepartmentBangla", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDepartmentBangla); + this.columnSectionBangla = new global::System.Data.DataColumn("SectionBangla", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSectionBangla); + this.columnLANDPHONE = new global::System.Data.DataColumn("LANDPHONE", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLANDPHONE); + this.columnOFFICEMOBILE = new global::System.Data.DataColumn("OFFICEMOBILE", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnOFFICEMOBILE); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoRow NewEmployeeDetailEchoRow() { + return ((EmployeeDetailEchoRow)(this.NewRow())); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { + return new EmployeeDetailEchoRow(builder); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override global::System.Type GetRowType() { + return typeof(EmployeeDetailEchoRow); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowChanged(e); + if ((this.EmployeeDetailEchoRowChanged != null)) { + this.EmployeeDetailEchoRowChanged(this, new EmployeeDetailEchoRowChangeEvent(((EmployeeDetailEchoRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowChanging(e); + if ((this.EmployeeDetailEchoRowChanging != null)) { + this.EmployeeDetailEchoRowChanging(this, new EmployeeDetailEchoRowChangeEvent(((EmployeeDetailEchoRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowDeleted(e); + if ((this.EmployeeDetailEchoRowDeleted != null)) { + this.EmployeeDetailEchoRowDeleted(this, new EmployeeDetailEchoRowChangeEvent(((EmployeeDetailEchoRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { + base.OnRowDeleting(e); + if ((this.EmployeeDetailEchoRowDeleting != null)) { + this.EmployeeDetailEchoRowDeleting(this, new EmployeeDetailEchoRowChangeEvent(((EmployeeDetailEchoRow)(e.Row)), e.Action)); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void RemoveEmployeeDetailEchoRow(EmployeeDetailEchoRow row) { + this.Rows.Remove(row); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { + global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); + global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); + PayrollDataSet ds = new PayrollDataSet(); + global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); + any1.Namespace = "http://www.w3.org/2001/XMLSchema"; + any1.MinOccurs = new decimal(0); + any1.MaxOccurs = decimal.MaxValue; + any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; + sequence.Items.Add(any1); + global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); + any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; + any2.MinOccurs = new decimal(1); + any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; + sequence.Items.Add(any2); + global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); + attribute1.Name = "namespace"; + attribute1.FixedValue = ds.Namespace; + type.Attributes.Add(attribute1); + global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); + attribute2.Name = "tableTypeName"; + attribute2.FixedValue = "EmployeeDetailEchoDataTable"; + type.Attributes.Add(attribute2); + type.Particle = sequence; + global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); + if (xs.Contains(dsSchema.TargetNamespace)) { + global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); + global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); + try { + global::System.Xml.Schema.XmlSchema schema = null; + dsSchema.Write(s1); + for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { + schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); + s2.SetLength(0); + schema.Write(s2); + if ((s1.Length == s2.Length)) { + s1.Position = 0; + s2.Position = 0; + for (; ((s1.Position != s1.Length) + && (s1.ReadByte() == s2.ReadByte())); ) { + ; + } + if ((s1.Position == s1.Length)) { + return type; + } + } + } + } + finally { + if ((s1 != null)) { + s1.Close(); + } + if ((s2 != null)) { + s2.Close(); + } + } + } + xs.Add(dsSchema); + return type; + } + } + /// ///Represents strongly named DataRow class. /// @@ -146659,6 +147677,1422 @@ namespace HRM.Report.PayrollDataSet { } } + /// + ///Represents strongly named DataRow class. + /// + public partial class EmployeeDetailEchoRow : global::System.Data.DataRow { + + private EmployeeDetailEchoDataTable tableEmployeeDetailEcho; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + internal EmployeeDetailEchoRow(global::System.Data.DataRowBuilder rb) : + base(rb) { + this.tableEmployeeDetailEcho = ((EmployeeDetailEchoDataTable)(this.Table)); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string EmpNo { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.EmpNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'EmpNo\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.EmpNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Name { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.NameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Name\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.NameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Designation { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.DesignationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Designation\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.DesignationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Department { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.DepartmentColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Department\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.DepartmentColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Grade { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.GradeColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Grade\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.GradeColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public double BasicSalary { + get { + try { + return ((double)(this[this.tableEmployeeDetailEcho.BasicSalaryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BasicSalary\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BasicSalaryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime DOB { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetailEcho.DOBColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DOB\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.DOBColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Gender { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.GenderColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Gender\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.GenderColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Religion { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.ReligionColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Religion\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.ReligionColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Bank { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BankColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Bank\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BankColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Branch { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BranchColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Branch\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BranchColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string AccountNo { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.AccountNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'AccountNo\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.AccountNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime DOJ { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetailEcho.DOJColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DOJ\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.DOJColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public System.DateTime ConfirmDate { + get { + try { + return ((global::System.DateTime)(this[this.tableEmployeeDetailEcho.ConfirmDateColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'ConfirmDate\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.ConfirmDateColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TaxAmount { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.TaxAmountColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TaxAmount\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.TaxAmountColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MarStatus { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.MarStatusColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MarStatus\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.MarStatusColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MobileNo { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.MobileNoColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MobileNo\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.MobileNoColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MailAdd { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.MailAddColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MailAdd\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.MailAddColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string LocDes { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.LocDesColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'LocDes\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.LocDesColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public double GrossSalary { + get { + try { + return ((double)(this[this.tableEmployeeDetailEcho.GrossSalaryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'GrossSalary\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.GrossSalaryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string VendorCode { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.VendorCodeColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'VendorCode\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.VendorCodeColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BankOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BankOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BankOPI\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BankOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BranchOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BranchOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BranchOPI\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BranchOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string AccountNoOPI { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.AccountNoOPIColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'AccountNoOPI\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.AccountNoOPIColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Floor { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.FloorColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Floor\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.FloorColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Section { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.SectionColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Section\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.SectionColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Line { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.LineColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Line\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.LineColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string RFID { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.RFIDColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'RFID\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.RFIDColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BloodGroup { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BloodGroupColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BloodGroup\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BloodGroupColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Qualification { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.QualificationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Qualification\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.QualificationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string VotterID { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.VotterIDColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'VotterID\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.VotterIDColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Nationality { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.NationalityColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Nationality\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.NationalityColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string FathersName { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.FathersNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'FathersName\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.FathersNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string MothersName { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.MothersNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'MothersName\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.MothersNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Spouse { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.SpouseColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Spouse\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.SpouseColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempVill { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.TempVillColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempVill\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.TempVillColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempPost { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.TempPostColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempPost\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.TempPostColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempPS { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.TempPSColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempPS\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.TempPSColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string TempDist { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.TempDistColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'TempDist\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.TempDistColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerVill { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.PerVillColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerVill\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.PerVillColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerPost { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.PerPostColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerPost\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.PerPostColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerPS { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.PerPSColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerPS\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.PerPSColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string PerDist { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.PerDistColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'PerDist\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.PerDistColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string Category { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.CategoryColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Category\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.CategoryColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BanglaName { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BanglaNameColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BanglaName\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BanglaNameColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string BanglaDesignation { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.BanglaDesignationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'BanglaDesignation\' in table \'EmployeeDetailEcho\' is DBNull." + + "", e); + } + } + set { + this[this.tableEmployeeDetailEcho.BanglaDesignationColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string DepartmentBangla { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.DepartmentBanglaColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'DepartmentBangla\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.DepartmentBanglaColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string SectionBangla { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.SectionBanglaColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'SectionBangla\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.SectionBanglaColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string LANDPHONE { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.LANDPHONEColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'LANDPHONE\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.LANDPHONEColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string OFFICEMOBILE { + get { + try { + return ((string)(this[this.tableEmployeeDetailEcho.OFFICEMOBILEColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'OFFICEMOBILE\' in table \'EmployeeDetailEcho\' is DBNull.", e); + } + } + set { + this[this.tableEmployeeDetailEcho.OFFICEMOBILEColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsEmpNoNull() { + return this.IsNull(this.tableEmployeeDetailEcho.EmpNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetEmpNoNull() { + this[this.tableEmployeeDetailEcho.EmpNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsNameNull() { + return this.IsNull(this.tableEmployeeDetailEcho.NameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetNameNull() { + this[this.tableEmployeeDetailEcho.NameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDesignationNull() { + return this.IsNull(this.tableEmployeeDetailEcho.DesignationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDesignationNull() { + this[this.tableEmployeeDetailEcho.DesignationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDepartmentNull() { + return this.IsNull(this.tableEmployeeDetailEcho.DepartmentColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDepartmentNull() { + this[this.tableEmployeeDetailEcho.DepartmentColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGradeNull() { + return this.IsNull(this.tableEmployeeDetailEcho.GradeColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGradeNull() { + this[this.tableEmployeeDetailEcho.GradeColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBasicSalaryNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BasicSalaryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBasicSalaryNull() { + this[this.tableEmployeeDetailEcho.BasicSalaryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDOBNull() { + return this.IsNull(this.tableEmployeeDetailEcho.DOBColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDOBNull() { + this[this.tableEmployeeDetailEcho.DOBColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGenderNull() { + return this.IsNull(this.tableEmployeeDetailEcho.GenderColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGenderNull() { + this[this.tableEmployeeDetailEcho.GenderColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsReligionNull() { + return this.IsNull(this.tableEmployeeDetailEcho.ReligionColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetReligionNull() { + this[this.tableEmployeeDetailEcho.ReligionColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBankNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BankColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBankNull() { + this[this.tableEmployeeDetailEcho.BankColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBranchNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BranchColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBranchNull() { + this[this.tableEmployeeDetailEcho.BranchColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsAccountNoNull() { + return this.IsNull(this.tableEmployeeDetailEcho.AccountNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetAccountNoNull() { + this[this.tableEmployeeDetailEcho.AccountNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDOJNull() { + return this.IsNull(this.tableEmployeeDetailEcho.DOJColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDOJNull() { + this[this.tableEmployeeDetailEcho.DOJColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsConfirmDateNull() { + return this.IsNull(this.tableEmployeeDetailEcho.ConfirmDateColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetConfirmDateNull() { + this[this.tableEmployeeDetailEcho.ConfirmDateColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTaxAmountNull() { + return this.IsNull(this.tableEmployeeDetailEcho.TaxAmountColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTaxAmountNull() { + this[this.tableEmployeeDetailEcho.TaxAmountColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMarStatusNull() { + return this.IsNull(this.tableEmployeeDetailEcho.MarStatusColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMarStatusNull() { + this[this.tableEmployeeDetailEcho.MarStatusColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMobileNoNull() { + return this.IsNull(this.tableEmployeeDetailEcho.MobileNoColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMobileNoNull() { + this[this.tableEmployeeDetailEcho.MobileNoColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMailAddNull() { + return this.IsNull(this.tableEmployeeDetailEcho.MailAddColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMailAddNull() { + this[this.tableEmployeeDetailEcho.MailAddColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLocDesNull() { + return this.IsNull(this.tableEmployeeDetailEcho.LocDesColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLocDesNull() { + this[this.tableEmployeeDetailEcho.LocDesColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsGrossSalaryNull() { + return this.IsNull(this.tableEmployeeDetailEcho.GrossSalaryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetGrossSalaryNull() { + this[this.tableEmployeeDetailEcho.GrossSalaryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsVendorCodeNull() { + return this.IsNull(this.tableEmployeeDetailEcho.VendorCodeColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetVendorCodeNull() { + this[this.tableEmployeeDetailEcho.VendorCodeColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBankOPINull() { + return this.IsNull(this.tableEmployeeDetailEcho.BankOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBankOPINull() { + this[this.tableEmployeeDetailEcho.BankOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBranchOPINull() { + return this.IsNull(this.tableEmployeeDetailEcho.BranchOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBranchOPINull() { + this[this.tableEmployeeDetailEcho.BranchOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsAccountNoOPINull() { + return this.IsNull(this.tableEmployeeDetailEcho.AccountNoOPIColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetAccountNoOPINull() { + this[this.tableEmployeeDetailEcho.AccountNoOPIColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsFloorNull() { + return this.IsNull(this.tableEmployeeDetailEcho.FloorColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetFloorNull() { + this[this.tableEmployeeDetailEcho.FloorColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSectionNull() { + return this.IsNull(this.tableEmployeeDetailEcho.SectionColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSectionNull() { + this[this.tableEmployeeDetailEcho.SectionColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLineNull() { + return this.IsNull(this.tableEmployeeDetailEcho.LineColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLineNull() { + this[this.tableEmployeeDetailEcho.LineColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsRFIDNull() { + return this.IsNull(this.tableEmployeeDetailEcho.RFIDColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetRFIDNull() { + this[this.tableEmployeeDetailEcho.RFIDColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBloodGroupNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BloodGroupColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBloodGroupNull() { + this[this.tableEmployeeDetailEcho.BloodGroupColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsQualificationNull() { + return this.IsNull(this.tableEmployeeDetailEcho.QualificationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetQualificationNull() { + this[this.tableEmployeeDetailEcho.QualificationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsVotterIDNull() { + return this.IsNull(this.tableEmployeeDetailEcho.VotterIDColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetVotterIDNull() { + this[this.tableEmployeeDetailEcho.VotterIDColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsNationalityNull() { + return this.IsNull(this.tableEmployeeDetailEcho.NationalityColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetNationalityNull() { + this[this.tableEmployeeDetailEcho.NationalityColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsFathersNameNull() { + return this.IsNull(this.tableEmployeeDetailEcho.FathersNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetFathersNameNull() { + this[this.tableEmployeeDetailEcho.FathersNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsMothersNameNull() { + return this.IsNull(this.tableEmployeeDetailEcho.MothersNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetMothersNameNull() { + this[this.tableEmployeeDetailEcho.MothersNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSpouseNull() { + return this.IsNull(this.tableEmployeeDetailEcho.SpouseColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSpouseNull() { + this[this.tableEmployeeDetailEcho.SpouseColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempVillNull() { + return this.IsNull(this.tableEmployeeDetailEcho.TempVillColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempVillNull() { + this[this.tableEmployeeDetailEcho.TempVillColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempPostNull() { + return this.IsNull(this.tableEmployeeDetailEcho.TempPostColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempPostNull() { + this[this.tableEmployeeDetailEcho.TempPostColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempPSNull() { + return this.IsNull(this.tableEmployeeDetailEcho.TempPSColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempPSNull() { + this[this.tableEmployeeDetailEcho.TempPSColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsTempDistNull() { + return this.IsNull(this.tableEmployeeDetailEcho.TempDistColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetTempDistNull() { + this[this.tableEmployeeDetailEcho.TempDistColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerVillNull() { + return this.IsNull(this.tableEmployeeDetailEcho.PerVillColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerVillNull() { + this[this.tableEmployeeDetailEcho.PerVillColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerPostNull() { + return this.IsNull(this.tableEmployeeDetailEcho.PerPostColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerPostNull() { + this[this.tableEmployeeDetailEcho.PerPostColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerPSNull() { + return this.IsNull(this.tableEmployeeDetailEcho.PerPSColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerPSNull() { + this[this.tableEmployeeDetailEcho.PerPSColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsPerDistNull() { + return this.IsNull(this.tableEmployeeDetailEcho.PerDistColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetPerDistNull() { + this[this.tableEmployeeDetailEcho.PerDistColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsCategoryNull() { + return this.IsNull(this.tableEmployeeDetailEcho.CategoryColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetCategoryNull() { + this[this.tableEmployeeDetailEcho.CategoryColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBanglaNameNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BanglaNameColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBanglaNameNull() { + this[this.tableEmployeeDetailEcho.BanglaNameColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsBanglaDesignationNull() { + return this.IsNull(this.tableEmployeeDetailEcho.BanglaDesignationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetBanglaDesignationNull() { + this[this.tableEmployeeDetailEcho.BanglaDesignationColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsDepartmentBanglaNull() { + return this.IsNull(this.tableEmployeeDetailEcho.DepartmentBanglaColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDepartmentBanglaNull() { + this[this.tableEmployeeDetailEcho.DepartmentBanglaColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsSectionBanglaNull() { + return this.IsNull(this.tableEmployeeDetailEcho.SectionBanglaColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSectionBanglaNull() { + this[this.tableEmployeeDetailEcho.SectionBanglaColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsLANDPHONENull() { + return this.IsNull(this.tableEmployeeDetailEcho.LANDPHONEColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLANDPHONENull() { + this[this.tableEmployeeDetailEcho.LANDPHONEColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsOFFICEMOBILENull() { + return this.IsNull(this.tableEmployeeDetailEcho.OFFICEMOBILEColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetOFFICEMOBILENull() { + this[this.tableEmployeeDetailEcho.OFFICEMOBILEColumn] = global::System.Convert.DBNull; + } + } + /// ///Row event argument class /// @@ -152846,6 +155280,40 @@ namespace HRM.Report.PayrollDataSet { } } } + + /// + ///Row event argument class + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public class EmployeeDetailEchoRowChangeEvent : global::System.EventArgs { + + private EmployeeDetailEchoRow eventRow; + + private global::System.Data.DataRowAction eventAction; + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoRowChangeEvent(EmployeeDetailEchoRow row, global::System.Data.DataRowAction action) { + this.eventRow = row; + this.eventAction = action; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public EmployeeDetailEchoRow Row { + get { + return this.eventRow; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataRowAction Action { + get { + return this.eventAction; + } + } + } } } diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.xsd b/HRM.Report/PayrollDataSet/PayrollDataSet.xsd index 91dde72..e35f826 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.xsd +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.xsd @@ -3308,25 +3308,81 @@ - + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.xss b/HRM.Report/PayrollDataSet/PayrollDataSet.xss index 0eed9bc..b6a9a85 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.xss +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.xss @@ -4,190 +4,191 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/HRM.Report/RDLC/EmployeeDetailEcho.rdlc b/HRM.Report/RDLC/EmployeeDetailEcho.rdlc new file mode 100644 index 0000000..5f2d8f1 --- /dev/null +++ b/HRM.Report/RDLC/EmployeeDetailEcho.rdlc @@ -0,0 +1,3610 @@ + + + 0 + + + + SQL + + + 47912e91-76ce-4c53-928b-3068a203a93c + + + + + + DummyDataSource + /* Local Query */ + true + + + + EmpNo + System.String + + + Name + System.String + + + Designation + System.String + + + Department + System.String + + + Grade + System.String + + + BasicSalary + System.Double + + + DOB + System.DateTime + + + Gender + System.String + + + Religion + System.String + + + Bank + System.String + + + Branch + System.String + + + AccountNo + System.String + + + DOJ + System.DateTime + + + ConfirmDate + System.DateTime + + + TaxAmount + System.String + + + MarStatus + System.String + + + MobileNo + System.String + + + MailAdd + System.String + + + LocDes + System.String + + + GrossSalary + System.Double + + + VendorCode + System.String + + + BankOPI + System.String + + + BranchOPI + System.String + + + AccountNoOPI + System.String + + + Floor + System.String + + + Section + System.String + + + Line + System.String + + + RFID + System.String + + + BloodGroup + System.String + + + Qualification + System.String + + + VotterID + System.String + + + Nationality + System.String + + + FathersName + System.String + + + MothersName + System.String + + + Spouse + System.String + + + TempVill + System.String + + + TempPost + System.String + + + TempPS + System.String + + + TempDist + System.String + + + PerVill + System.String + + + PerPost + System.String + + + PerPS + System.String + + + PerDist + System.String + + + Category + System.String + + + BanglaName + System.String + + + BanglaDesignation + System.String + + + DepartmentBangla + System.String + + + SectionBangla + System.String + + + LANDPHONE + System.String + + + OFFICEMOBILE + System.String + + + + PayrollDataSet + D:\Git\EchoTex_Payroll\HRM.Report\PayrollDataSet\PayrollDataSet.xsd + EmployeeDetailEcho + + + + + + + + + + + + + + + 0.25in + + + 0.4in + + + 0.65in + + + 0.50833in + + + 0.5in + + + 0.45833in + + + 0.45in + + + 0.4375in + + + 0.45in + + + 0.45in + + + 0.41667in + + + 0.45in + + + 0.40625in + + + 0.45in + + + 0.35in + + + 0.55in + + + 0.6in + + + 0.5in + + + 0.4in + + + 0.4in + + + 0.5in + + + 0.45in + + + 0.6in + + + 0.55in + + + 0.45in + + + 0.35in + + + 0.45in + + + 0.5in + + + 0.67708in + + + 0.5625in + + + 0.3in + + + + + 0.26736in + + + + + true + true + + + + + SL. + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Emp No + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Employee Name + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + bvg + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Designation + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + c`ex + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Department + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + wefvM + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Floor + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Section + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + kvLv + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Line + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Category + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Location + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Grade + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Basic Salary + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Gross Salary + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DOB + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Gender + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Religion + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Bank + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Branch + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Account No + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DOJ + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Confirm Date + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Martial Status + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Mail + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Mobile No + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Land Phone + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Office Email + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendor Code + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.22in + + + + + true + true + + + + + =RowNumber("PayrollDataSet_EmployeeDetail") + + + + + + + textbox23 + 20 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EmpNo.Value + + + + + + + EmpNo + 19 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Name.Value + + + + + + + Name + 18 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BanglaName.Value + + + + + + + BanglaName + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Designation.Value + + + + + + + Designation + 17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BanglaDesignation.Value + + + + + + + BanglaDesignation + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Department.Value + + + + + + + Department + 16 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DepartmentBangla.Value + + + + + + + DepartmentBangla + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Floor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Section.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!SectionBangla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Line.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Category.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LocDes.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Grade.Value + + + + + + + Grade + 14 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BasicSalary.Value + + + + + + + BasicSalary + 13 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!GrossSalary.Value + + + + + + + GrossSalary + 12 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!DOB.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Gender.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Religion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Bank.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Branch.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!AccountNo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!DOJ.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!ConfirmDate.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MarStatus.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MailAdd.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MobileNo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LANDPHONE.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!OFFICEMOBILE.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VendorCode.Value + + + + + + + VendorCode + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.22in + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After + true + true + + + + Detail + + + + + Detail_Collection + Output + true + + + Before + true + + + + PayrollDataSet_EmployeeDetail + 0.05in + 0.1in + 0.70736in + 14.46666in + + + + 0.75736in + + + + + + + 0.05in + 3.8in + 0.25in + 7.3in + + + + External + ="file:///" & Parameters!Logo.Value + image/jpg + FitProportional + 0.1in + 0.1in + 0.675in + 1.3in + 1 + + + + + + + true + true + + + + + =Parameters!Address.Value + + + + + + + 0.9in + 0.1in + 0in + 11in + 4 + + 1.75pt + + + + + + + + + + + textbox18 + 0.05in + 0.1in + 0.25in + 2.475in + + + + true + true + + + + + ="Page " & Globals!PageNumber & " of " & Globals!TotalPages + + + + + + + 0.05in + 8.25in + 0.2in + 2.85in + 1 + + + + + + + + + + textbox1 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Emp No. + + + + + + + textbox3 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + RF ID + + + + + + + textbox4 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Employee Name + + + + + + + textbox11 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + bvg + + + + + + + Textbox68 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Department + + + + + + + textbox14 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + wefvM + + + + + + + Textbox73 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Section + + + + + + + textbox17 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + kvLv + + + + + + + Textbox77 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Line + + + + + + + textbox22 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Designation + + + + + + + textbox25 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + c`ex + + + + + + + Textbox82 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Floor Name + + + + + + + textbox28 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Category + + + + + + + Textbox64 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Grade + + + + + + + textbox33 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Basic Salary + + + + + + + textbox36 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Gross Salary + + + + + + + textbox39 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DOB + + + + + + + textbox42 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + DOJ + + + + + + + textbox45 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Confirm Date + + + + + + + textbox48 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Employee Qualification + + + + + + + textbox51 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + VotterID/B.R.N:: + + + + + + + textbox54 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Gender + + + + + + + textbox57 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Religion + + + + + + + textbox60 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Nationality + + + + + + + textbox63 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Marital Status + + + + + + + textbox66 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Blood Group + + + + + + + textbox69 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Father's Name: + + + + + + + textbox72 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Mother's Name + + + + + + + textbox75 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Spouse Name + + + + + + + textbox78 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Mobile No + + + + + + + textbox81 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Office Email + + + + + + + Textbox67 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Office Mobile + + + + + + + Textbox80 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Land Phone + + + + + + + Textbox88 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Location + + + + + + + textbox84 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Temporary Address: + + + + + + + textbox87 + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + Permanent Address: + + + + + + + textbox99 + + + 2pt + 2pt + 2pt + 2pt + + + 4 + + + + + + + + + true + true + + + + + Salary Bank + + + + + + + textbox111 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Salary Branch + + + + + + + textbox114 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Salary Account No + + + + + + + textbox117 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + OPI Bank + + + + + + + textbox120 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + OPI Branch + + + + + + + textbox123 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + OPI Account No + + + + + + + textbox126 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Vendor Code + + + + + + + textbox129 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + + + + + + + + textbox8 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox6 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox7 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox12 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox70 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox15 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox74 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox19 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox79 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox20 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox23 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox83 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox24 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox65 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox26 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox27 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox31 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox32 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox34 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox35 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox37 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox38 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox40 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox41 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox43 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox44 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox46 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox47 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox49 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox50 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox52 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox71 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox85 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox91 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox53 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Village + + + + + + + textbox89 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Post + + + + + + + textbox90 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + P.S: + + + + + + + textbox92 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Dist + + + + + + + textbox93 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Village + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Post + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + P.S: + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Dist + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox102 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox55 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox56 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox58 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox59 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox61 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox62 + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + =RowNumber("PayrollDataSet_EmployeeDetail") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EmpNo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RFID.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Name.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BanglaName.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Department.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DepartmentBangla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Section.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!SectionBangla.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Line.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Designation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BanglaDesignation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Floor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Category.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Grade.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BasicSalary.Value + + + + + + + BasicSalary + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!GrossSalary.Value + + + + + + + GrossSalary + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!DOB.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!DOJ.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Fields!ConfirmDate.Value,"dd MMM yyyy") + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Qualification.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VotterID.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Gender.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Religion.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Nationality.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MarStatus.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BloodGroup.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!FathersName.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MothersName.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Spouse.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MobileNo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!MailAdd.Value + + + + + + + MailAdd + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!OFFICEMOBILE.Value + + + + + + + OFFICEMOBILE + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LANDPHONE.Value + + + + + + + LANDPHONE + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LocDes.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TempVill.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TempPost.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TempPS.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TempDist.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PerVill.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PerPost.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PerPS.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!PerDist.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Bank.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Branch.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!AccountNo.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BankOPI.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!BranchOPI.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!AccountNoOPI.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!VendorCode.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After + true + true + + + After + true + true + + + + Detail + + + + + Detail_Collection + Output + true + + + + PayrollDataSet_EmployeeDetail + 0.2in + 0.05in + 0.75in + 22.25833in + + + + + + 0.95in + + + + + + + 0.05in + 3.8in + 0.25in + 7.3in + + + + External + ="file:///" & Parameters!Logo.Value + image/jpg + FitProportional + 0.1in + 0.1in + 0.675in + 1.3in + 1 + + + + + + + true + true + + + + + =Parameters!Address.Value + + + + + + + 0.9in + 0.1in + 0in + 17.8in + 4 + + 1.75pt + + + + + + + + + + + textbox18 + 0.05in + 0.1in + 0.25in + 1.75in + + + + true + true + + + + + ="Page " & Globals!PageNumber & " of " & Globals!TotalPages + + + + + + + 0.05in + 15.15in + 0.2in + 2.85in + 1 + + + +