From b144d90bed6092525eeb9de0baff088c44afc78f Mon Sep 17 00:00:00 2001 From: mashfiq Date: Tue, 2 Sep 2025 13:25:37 +0600 Subject: [PATCH 1/6] emp life style status color --- .../life-cycle-entry/life-cycle-entry.component.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html b/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html index a92a9ed..7cc1b81 100644 --- a/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html +++ b/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html @@ -80,7 +80,9 @@
:
+ [ngStyle]="{ color: _statusString === 'Discontinued' ? 'red' : (_statusString === 'Live' ? 'green' : 'black'), + fontWeight: (_statusString !== 'Discontinued' && _statusString !== 'Live') ? 'normal' : 'bold' + }"> {{ _statusString }}
-- 2.40.0.windows.1 From 6c8d3513f3b98e05455102bf4d572834d6615c20 Mon Sep 17 00:00:00 2001 From: mashfiq Date: Tue, 2 Sep 2025 14:07:47 +0600 Subject: [PATCH 2/6] status color lifecycle --- HRM.UI/ClientApp/src/app/app.api.service.ts | 2 +- .../life-cycle-entry/life-cycle-entry.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HRM.UI/ClientApp/src/app/app.api.service.ts b/HRM.UI/ClientApp/src/app/app.api.service.ts index 54ffb9e..56d4d14 100644 --- a/HRM.UI/ClientApp/src/app/app.api.service.ts +++ b/HRM.UI/ClientApp/src/app/app.api.service.ts @@ -14,7 +14,7 @@ export class ApiService { public isSSO = false; public versionDeployement = false; // public versionNumber = `V-${GlobalfunctionExtension.generateVersionNumber(new Date(2025, 1, 25))}-`+"01"; - public versionNumber = `V-20250724-`+"01"; + public versionNumber = `V-20250902-`+"01"; public static BASE_URL = ''; public base_url = ''; // public currentLink = ''; diff --git a/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html b/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html index 7cc1b81..089cba3 100644 --- a/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html +++ b/HRM.UI/ClientApp/src/app/payroll/career-and-profile/life-cycle-entry/life-cycle-entry.component.html @@ -81,7 +81,7 @@
:
{{ _statusString }}
-- 2.40.0.windows.1 From 475f3843838355a48b72ed33da30316c095cde0d Mon Sep 17 00:00:00 2001 From: mashfiq Date: Sun, 21 Sep 2025 10:45:48 +0600 Subject: [PATCH 3/6] prod bonus attn report --- HRM.Report/Class/rptBonus.cs | 33 +- HRM.Report/HRM.Report.csproj | 4 +- .../PayrollDataSet/PayrollDataSet.Designer.cs | 590 +++++++++++++++++- HRM.Report/PayrollDataSet/PayrollDataSet.xsd | 141 +++-- HRM.Report/PayrollDataSet/PayrollDataSet.xss | 30 +- HRM.Report/RDLC/rptProdBonusAttendance.rdlc | 340 +++++++++- 6 files changed, 1033 insertions(+), 105 deletions(-) diff --git a/HRM.Report/Class/rptBonus.cs b/HRM.Report/Class/rptBonus.cs index 2152e8f..7b8fa14 100644 --- a/HRM.Report/Class/rptBonus.cs +++ b/HRM.Report/Class/rptBonus.cs @@ -1,20 +1,21 @@ -using System; +using Ease.Core.Model; +using Ease.Core.Utility; +using Ease.CoreV35; +using HRM.BO; +using HRM.DA; +using Microsoft.Reporting.NETCore; +using Org.BouncyCastle.Ocsp; +using Payroll.BO; +using Payroll.Service; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; +using System.IO; using System.Linq; using System.Text; -using Payroll.BO; -using Ease.CoreV35; -using Ease.Core.Model; -using Ease.Core.Utility; using System.Windows.Forms; -using HRM.BO; -using HRM.DA; -using System.IO; -using Microsoft.Reporting.NETCore; -using Payroll.Service; using static HRM.Report.PayrollDataSet.dsBonusDataSet; using static HRM.Report.PayrollDataSet.PayrollDataSet; using static NPOI.POIFS.Crypt.Dsig.SignatureInfo; @@ -339,7 +340,8 @@ namespace HRM.Report DateTime? bonusIntime = DateTime.MinValue; DateTime? bonusOuttime = DateTime.MinValue; List prodAttn = new ProdBonusAttnService().GetBySetupID(designId); - if (prodAttn.Count <= 0) return null; + if (prodAttn.Count <= 0) + throw new Exception("No data found"); string empIds = string.Empty; empIds = prodAttn.Select(x => x.EmployeeID).Distinct().Aggregate(new StringBuilder(), (sb, empid) => sb.Append(empid + ","), sb => sb.ToString().Trim(',')); @@ -347,6 +349,7 @@ namespace HRM.Report List oDailyAttnProsess = new DailyAttnProcessService().Get(empIds, design.FromDate.Date, design.ToDate.Date); //List oDailyAttnProsess = DailyAttnProcess.Get(empIds,GlobalFunctions.FirstDateOfMonth(design.SalaryMonth.AddMonths(-1)), GlobalFunctions.LastDateOfMonth(design.SalaryMonth)); List emps = new EmployeeService().GetByEmpIDs(empIds); + DataTable dTblEmps = new EmployeeService().GetAllEmpBasicInfo(empIds).Tables[0]; List attnEmp = new List(); PayrollDataSet.PayrollDataSet.dtProdAttendanceDataTable dTable = new PayrollDataSet.PayrollDataSet.dtProdAttendanceDataTable(); foreach (ProdBonusAttn item in prodAttn) @@ -366,6 +369,8 @@ namespace HRM.Report List tempAttn = prodAttn.Where(o => o.EmployeeID == item.ID).ToList();//.Sum(x => x.BonusHour); double hour = 0; + DataRow drEmp = dTblEmps.AsEnumerable().FirstOrDefault(x => item.ID == x.Field("EmployeeID")); + foreach (ProdBonusAttn tAtt in tempAttn) { @@ -426,6 +431,12 @@ namespace HRM.Report oDR["Date"] = dailyAtt.InTime.Value.Date.ToString("dd-MMM-yyyy"); oDR["WorkingHour"] = hour.ToString("0.00"); + oDR["Designation"] = drEmp["Designation"].ToString(); + oDR["Department"] = drEmp["Department"].ToString(); + oDR["Floor"] = drEmp["Floor"].ToString(); + oDR["Line"] = drEmp["Line"].ToString(); + oDR["Section"] = drEmp["Section"].ToString(); + dTable.Rows.Add(oDR); count++; } diff --git a/HRM.Report/HRM.Report.csproj b/HRM.Report/HRM.Report.csproj index 8d97086..b80f213 100644 --- a/HRM.Report/HRM.Report.csproj +++ b/HRM.Report/HRM.Report.csproj @@ -587,7 +587,9 @@ - + + Always + diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs b/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs index 17d87b0..dffc5d7 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.Designer.cs @@ -405,6 +405,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PayrollDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context, false) { if ((this.IsBinarySerialized(info, context) == true)) { @@ -6757,6 +6759,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PayslipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -7588,6 +7592,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -8430,6 +8436,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeePersonalInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -9338,6 +9346,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeEducationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -9663,6 +9673,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeChildrenDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -10022,6 +10034,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeHobbyDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -10307,6 +10321,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeExperienceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -10650,6 +10666,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeTrainingDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -10983,6 +11001,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeReferenceInsideDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -11328,6 +11348,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeNomineeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -11671,6 +11693,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeReferenceOutsideDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -12020,6 +12044,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected IncomeTaxDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -12473,6 +12499,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected IncomeTaxSlabDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -12788,6 +12816,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected IncomeTaxOtherDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -13095,6 +13125,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BankAdviceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -13464,6 +13496,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalarySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -14105,6 +14139,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SettlementAdviceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -14817,6 +14853,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryReconsilationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -15208,6 +15246,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CCWSalaryDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -15535,6 +15575,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CCWSaSummaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -15838,6 +15880,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CashDisbursementDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -16159,6 +16203,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PostingDetailsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -16662,6 +16708,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -17590,6 +17638,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeHistoryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -18039,6 +18089,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpCostAllocationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -18328,6 +18380,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected UpcomEmployeeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -18627,6 +18681,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OTMonthlySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -18741,7 +18797,7 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] - public OTMonthlySheetRow AddOTMonthlySheetRow(string EmoNo, string Name, string OTDescription, string OTRate, double OTAmount, System.DateTime OTMonth, string SLNo, double Basic, string SeqNo) { + public OTMonthlySheetRow AddOTMonthlySheetRow(string EmoNo, string Name, string OTDescription, double OTRate, double OTAmount, System.DateTime OTMonth, string SLNo, double Basic, string SeqNo) { OTMonthlySheetRow rowOTMonthlySheetRow = ((OTMonthlySheetRow)(this.NewRow())); object[] columnValuesArray = new object[] { EmoNo, @@ -18795,7 +18851,7 @@ namespace HRM.Report.PayrollDataSet { base.Columns.Add(this.columnName); this.columnOTDescription = new global::System.Data.DataColumn("OTDescription", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnOTDescription); - this.columnOTRate = new global::System.Data.DataColumn("OTRate", typeof(string), null, global::System.Data.MappingType.Element); + this.columnOTRate = new global::System.Data.DataColumn("OTRate", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnOTRate); this.columnOTAmount = new global::System.Data.DataColumn("OTAmount", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnOTAmount); @@ -18982,6 +19038,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BonusBankAdviceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -19329,6 +19387,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BonusRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -19755,6 +19815,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AnnualIncomeTaxDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -20100,6 +20162,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected LaonPaymentDueDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -20619,6 +20683,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected LoanIssueDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -21020,6 +21086,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OTHourlySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -21335,6 +21403,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BasicReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -21666,6 +21736,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ExtendedSalarySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -22158,6 +22230,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OTMonthRangeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -22471,6 +22545,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BranchWiseOTDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -22762,6 +22838,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected DivisionWiseOTDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -23085,6 +23163,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OverAllSummaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -23530,6 +23610,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpGradeBasicDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -23997,6 +24079,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpAllowDeductDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -24418,6 +24502,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpBankHistoryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -24885,6 +24971,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpConfirmHisDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -25290,6 +25378,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpPFHisDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -25661,6 +25751,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected JVReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -26183,6 +26275,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected UpCommingEmpDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -26534,6 +26628,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PRBProcessDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -27039,6 +27135,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected Report108DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -28170,6 +28268,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CCWReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -28515,6 +28615,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CCDetailReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -28928,6 +29030,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected JVSalaryDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -29251,6 +29355,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected JVLoactionWReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -29602,6 +29708,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected JVSummaryReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -29921,6 +30029,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OPIRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -30324,6 +30434,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AccountReportForSAPDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -30683,6 +30795,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected LoanReportForSAPDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -31217,6 +31331,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ReportForSAPDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -31632,6 +31748,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BankAdviceOfPRBDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -31961,6 +32079,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected OPITotalValueRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -32314,6 +32434,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected WartsilaSalarySheetSummaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -32919,6 +33041,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected WartsilaSalarySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -33564,6 +33688,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeJoiningDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -34015,6 +34141,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected WartsilaPaySlipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -34891,6 +35019,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected WartsilaReconciliationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -35708,6 +35838,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpJoining4NovartisDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -36232,6 +36364,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected WartSilaRSummaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -36777,6 +36911,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpLifeCycleDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -37196,6 +37332,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected IndividualLoanReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -37625,6 +37763,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BankAdviceLetterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -37962,6 +38102,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeMonthlyExpenseDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -38259,6 +38401,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeRetirementDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -38618,6 +38762,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpPersonalInformationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -39041,6 +39187,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpAcademicBackgroundDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -39340,6 +39488,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpLanguageKnownDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -39615,6 +39765,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpMembershipInSocietiesClubsAssociationsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -39890,6 +40042,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpCloseRelationsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -40167,6 +40321,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpEmploymentHistoryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -40450,6 +40606,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpOtherProfessionalQualificationsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -40703,6 +40861,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpReferencesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -40986,6 +41146,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpDescribeInDetailsPresentJobResponsibilitiesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -41233,6 +41395,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpReasonForLeavingCurrentJobDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -41480,6 +41644,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpExtraCaricularActivitiesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -41733,6 +41899,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpListOfRelativeWorkingInNovatisDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -42016,6 +42184,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpAdditionalInformationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -42265,6 +42435,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpAnsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -42524,6 +42696,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpWorkingRelativesAnsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -42781,6 +42955,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpPermanentAndMailingAddressDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -43088,6 +43264,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeePhotoPathDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -43341,6 +43519,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpListOfRelativeWorkingInCompanyDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -43632,6 +43812,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ITPfAndOtherDetailsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -43973,6 +44155,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected MultipleEmpITDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -44528,6 +44712,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ITHeaderDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -44833,6 +45019,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeLFADataDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -45148,6 +45336,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected TaxRebeatInvestmentDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -45447,6 +45637,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected TaxChallanDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -45736,6 +45928,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PmpbasicDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -46105,6 +46299,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PmpobjectivesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -46444,6 +46640,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PmpEmpValueBehaviorRatingsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -46755,6 +46953,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected FSSJVReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -47108,6 +47308,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtTransferTPToPRDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -47429,6 +47631,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpContinueFromDiscontinueDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -47772,6 +47976,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpITInfoAndBasicInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -48155,6 +48361,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryStractureDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -48831,6 +49039,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected DedtaxByMonthDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -49168,6 +49378,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalarySheetByMonthDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -49621,6 +49833,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeServiceLengthDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -49936,6 +50150,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PayRollRegisterForAllDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -50237,6 +50453,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ReckittTaxCardDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -50532,6 +50750,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected DedtaxByMonthRangeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -50857,6 +51077,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtRolePermissionDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -51146,6 +51368,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtRoleInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -51445,6 +51669,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtUserRoleDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -51820,6 +52046,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EERSDataDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -52284,6 +52512,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryReconDeductionDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -52583,6 +52813,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryReconciliationSummaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -52862,6 +53094,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected MemoDebitDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -53161,6 +53395,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected MemoCreditDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -53454,6 +53690,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SharedLoanIssueDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -53853,6 +54091,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected GratuityProvisionDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -54230,6 +54470,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected GratuityRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -54541,6 +54783,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected GratuityLedgerDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -54820,6 +55064,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected LoanDataDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -55129,6 +55375,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtUsersDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -55472,6 +55720,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtUserLoginDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -55799,6 +56049,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtBadUserDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -56100,6 +56352,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpItemWiseSalaryDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -56391,6 +56645,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PFLedgerDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -56690,6 +56946,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ChallanDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -56975,6 +57233,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected UpcomingTrainingDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -57342,6 +57602,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryCertificateDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -57828,6 +58090,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ChallanNoWithMonthDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -58107,6 +58371,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected MarketSurveyComDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -58408,6 +58674,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected activeInactiveUserListDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -58703,6 +58971,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtCashAdviceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -59096,6 +59366,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BanglaPaySlipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -59815,6 +60087,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtProdBonusDetailDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -60182,6 +60456,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtEmpDesWiseProdBonusDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -60583,6 +60859,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtMonthlyProdBonusDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -61060,6 +61338,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalarySheetStaticDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -62427,6 +62707,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtRoleAuditDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -62768,6 +63050,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtRolePermission2DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -63115,6 +63399,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CasualSalarySheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -63638,6 +63924,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BankAdviceHNMDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -63999,6 +64287,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpDesCatChangeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -64456,6 +64746,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeConfirmationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -64831,6 +65123,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected MonthlyScheduleDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -65531,6 +65825,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AllMedicalClaimDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -65852,6 +66148,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AllEmpTaxInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -66217,6 +66515,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtAllActiveLaonsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -66716,6 +67016,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ArrSheetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -67147,6 +67449,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpGroupInsuranceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -67506,6 +67810,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpGroupInsuranceDisconDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -67891,6 +68197,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SKFExpencesPaySlipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -68418,6 +68726,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected RemainingLoanforPayslipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -68757,6 +69067,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PayslipBasicInfoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -69385,6 +69697,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmpPromotionDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -69748,6 +70062,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected NewlyIssuedLoanDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -70137,6 +70453,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CurrentMonthDueLoanDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -70531,6 +70849,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CashRefundDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -70908,6 +71228,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected PFRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -71475,6 +71797,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BonusRegisterBATDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -71872,6 +72196,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected NmgtSpringFestivalBonusRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -72313,6 +72639,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected NmgtBonusPaySlipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -72834,6 +73162,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryRegisterDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -73265,6 +73595,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CrewDeploymentDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -73734,6 +74066,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected ActiveEmployeeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -74354,6 +74688,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BonusPaySlipDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -74729,6 +75065,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected LoanDueWithCCDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -75036,6 +75374,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtBankAdviceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -75396,6 +75736,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtEncashmentReportDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -75915,6 +76257,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected SalaryReconNewDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -76320,6 +76664,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AnnualIncomeCertificateDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -76923,6 +77269,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AssetAcknowledgementDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -77378,6 +77726,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected AssetSerialInformationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -77817,6 +78167,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BanglaPaySlipNewDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -78849,6 +79201,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected BanglaPaySlipNewProdBonusDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -79136,6 +79490,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -79457,6 +79813,16 @@ namespace HRM.Report.PayrollDataSet { private global::System.Data.DataColumn columnWorkingHour; + private global::System.Data.DataColumn columnDesignation; + + private global::System.Data.DataColumn columnDepartment; + + private global::System.Data.DataColumn columnFloor; + + private global::System.Data.DataColumn columnLine; + + private global::System.Data.DataColumn columnSection; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dtProdAttendanceDataTable() { @@ -79485,6 +79851,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected dtProdAttendanceDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -79522,6 +79890,46 @@ namespace HRM.Report.PayrollDataSet { } } + [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 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 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 SectionColumn { + get { + return this.columnSection; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] @@ -79559,13 +79967,18 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] - public dtProdAttendanceRow AdddtProdAttendanceRow(string EmployeeNo, string Name, string Date, string WorkingHour) { + public dtProdAttendanceRow AdddtProdAttendanceRow(string EmployeeNo, string Name, string Date, string WorkingHour, string Designation, string Department, string Floor, string Line, string Section) { dtProdAttendanceRow rowdtProdAttendanceRow = ((dtProdAttendanceRow)(this.NewRow())); object[] columnValuesArray = new object[] { EmployeeNo, Name, Date, - WorkingHour}; + WorkingHour, + Designation, + Department, + Floor, + Line, + Section}; rowdtProdAttendanceRow.ItemArray = columnValuesArray; this.Rows.Add(rowdtProdAttendanceRow); return rowdtProdAttendanceRow; @@ -79592,6 +80005,11 @@ namespace HRM.Report.PayrollDataSet { this.columnName = base.Columns["Name"]; this.columnDate = base.Columns["Date"]; this.columnWorkingHour = base.Columns["WorkingHour"]; + this.columnDesignation = base.Columns["Designation"]; + this.columnDepartment = base.Columns["Department"]; + this.columnFloor = base.Columns["Floor"]; + this.columnLine = base.Columns["Line"]; + this.columnSection = base.Columns["Section"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -79605,6 +80023,16 @@ namespace HRM.Report.PayrollDataSet { base.Columns.Add(this.columnDate); this.columnWorkingHour = new global::System.Data.DataColumn("WorkingHour", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnWorkingHour); + 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.columnFloor = new global::System.Data.DataColumn("Floor", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnFloor); + this.columnLine = new global::System.Data.DataColumn("Line", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnLine); + this.columnSection = new global::System.Data.DataColumn("Section", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnSection); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -79814,6 +80242,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CCWiseSalarySheetNewDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -80367,6 +80797,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected CandidateInformationDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -80672,6 +81104,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeInfoBasicDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -81081,6 +81515,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected DeletedLifeCycleDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -81622,6 +82058,8 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [System.ObsoleteAttribute("This API supports obsolete formatter-based serialization. It should not be called" + + " or extended by application code.", DiagnosticId="SYSLIB0051")] protected EmployeeDetailEchoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); @@ -94139,10 +94577,10 @@ namespace HRM.Report.PayrollDataSet { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] - public string OTRate { + public double OTRate { get { try { - return ((string)(this[this.tableOTMonthlySheet.OTRateColumn])); + return ((double)(this[this.tableOTMonthlySheet.OTRateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("The value for column \'OTRate\' in table \'OTMonthlySheet\' is DBNull.", e); @@ -145998,6 +146436,86 @@ namespace HRM.Report.PayrollDataSet { } } + [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.tabledtProdAttendance.DesignationColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Designation\' in table \'dtProdAttendance\' is DBNull.", e); + } + } + set { + this[this.tabledtProdAttendance.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.tabledtProdAttendance.DepartmentColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Department\' in table \'dtProdAttendance\' is DBNull.", e); + } + } + set { + this[this.tabledtProdAttendance.DepartmentColumn] = 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.tabledtProdAttendance.FloorColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Floor\' in table \'dtProdAttendance\' is DBNull.", e); + } + } + set { + this[this.tabledtProdAttendance.FloorColumn] = 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.tabledtProdAttendance.LineColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Line\' in table \'dtProdAttendance\' is DBNull.", e); + } + } + set { + this[this.tabledtProdAttendance.LineColumn] = 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.tabledtProdAttendance.SectionColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'Section\' in table \'dtProdAttendance\' is DBNull.", e); + } + } + set { + this[this.tabledtProdAttendance.SectionColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEmployeeNoNull() { @@ -146045,6 +146563,66 @@ namespace HRM.Report.PayrollDataSet { public void SetWorkingHourNull() { this[this.tabledtProdAttendance.WorkingHourColumn] = 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.tabledtProdAttendance.DesignationColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDesignationNull() { + this[this.tabledtProdAttendance.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.tabledtProdAttendance.DepartmentColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetDepartmentNull() { + this[this.tabledtProdAttendance.DepartmentColumn] = 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.tabledtProdAttendance.FloorColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetFloorNull() { + this[this.tabledtProdAttendance.FloorColumn] = 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.tabledtProdAttendance.LineColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetLineNull() { + this[this.tabledtProdAttendance.LineColumn] = 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.tabledtProdAttendance.SectionColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetSectionNull() { + this[this.tabledtProdAttendance.SectionColumn] = global::System.Convert.DBNull; + } } /// diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.xsd b/HRM.Report/PayrollDataSet/PayrollDataSet.xsd index e35f826..9498659 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.xsd +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.xsd @@ -3247,6 +3247,11 @@ + + + + + @@ -3308,81 +3313,81 @@ - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HRM.Report/PayrollDataSet/PayrollDataSet.xss b/HRM.Report/PayrollDataSet/PayrollDataSet.xss index b6a9a85..160fed0 100644 --- a/HRM.Report/PayrollDataSet/PayrollDataSet.xss +++ b/HRM.Report/PayrollDataSet/PayrollDataSet.xss @@ -4,10 +4,10 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + - + @@ -32,7 +32,7 @@ - + @@ -73,7 +73,7 @@ - + @@ -103,7 +103,7 @@ - + @@ -142,7 +142,7 @@ - + @@ -171,24 +171,24 @@ - - + + - + - - - - - - + + + + + + \ No newline at end of file diff --git a/HRM.Report/RDLC/rptProdBonusAttendance.rdlc b/HRM.Report/RDLC/rptProdBonusAttendance.rdlc index e4d6e5a..ef313a9 100644 --- a/HRM.Report/RDLC/rptProdBonusAttendance.rdlc +++ b/HRM.Report/RDLC/rptProdBonusAttendance.rdlc @@ -34,16 +34,36 @@ Date - System.DateTime + System.String WorkingHour - System.Double + System.String + + + Designation + System.String + + + Department + System.String + + + Floor + System.String + + + Line + System.String + + + Section + System.String PayrollDataSet - D:\Local\Echo TextNew\Echo v2.0\Echo_Desktop\Payroll.Report\PayrollDataSet\PayrollDataSet.xsd + D:\Git\EchoTex_Payroll\HRM.Report\PayrollDataSet\PayrollDataSet.xsd dtProdAttendance @@ -150,6 +170,134 @@ + + + + true + true + + + + + Designation + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Department + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Section + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Floor + + + + + + LightGrey + 2pt + 2pt + 2pt + 2pt + + + + @@ -422,6 +570,190 @@ + + + + + =Fields!Designation.Value + + + + + =Fields!Designation.Value + + + + 1in + + + true + true + + + + + =Fields!Designation.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Department.Value + + + + + =Fields!Department.Value + + + + 1in + + + true + true + + + + + =Fields!Department.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Section.Value + + + + + =Fields!Section.Value + + + + 0.80208in + + + true + true + + + + + =Fields!Section.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Floor.Value + + + + + =Fields!Floor.Value + + + + 0.53125in + + + true + true + + + + + =Fields!Floor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + @@ -431,7 +763,7 @@ 0.53417in 0.025in 0.5in - 2.66458in + 5.99791in 1 + + + + + + textbox27 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Entitlement + + + + + + + textbox28 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + CF Days + + + + + + + textbox44 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Taken + + + + + + + textbox29 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Balance + + + + + + + textbox33 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + + + true + true + + + + + =Fields!Leave.Value + + + + + + + Leave + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Opening.Value + + + + + + + Opening + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!CFDays.Value + + + + + + + textbox45 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Availed.Value + + + + + + + Availed + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Balance.Value + + + + + + + Balance + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + After + true + + + + Detail + + + + + Detail_Collection + Output + true + + + + dsEmpLeaveLedger_LeaveBalance + 3in + 0.125in + 0.4in + 5.86459in + + + Right + + + + + + + 1in + + + 1.5in + + + 1.5in + + + 1.875in + + + + + 0.2in + + + + + true + true + + + + + ID : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!EmpNo.Value, "table3") + + + + + + + EmpNo + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Date : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Format(Today(), "dd MMM yyyy") + + + + + + + textbox37 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + + + true + true + + + + + Name : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =First(Fields!EmpName.Value, "table3") + + + + + + + EmpName + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Report Period : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeavePeriod.Value + + + + + + + textbox38 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + + + true + true + + + + + Designation : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Designation.Value + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Approver : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveApprover.Value + + + + + + + textbox39 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + + + true + true + + + + + Department : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Department.Value + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Notifier : + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveNotifier.Value + + + + + + + textbox40 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + Floor: + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Floor.Value + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox23 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + Section: + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Section.Value + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox41 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + Line: + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Line.Value + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + textbox47 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + Detail + + + + + + + + + + + Detail_Collection + Output + true + + + + dsEmpLeaveLedger_EmpInformation + 1.25in + 0.125in + 1.55in + 5.875in + 1 + + + + + + + 0.79831in + + + 0.79831in + + + 0.39915in + + + 0.79831in + + + 0.79831in + + + 0.80865in + + + 0.79831in + + + 0.66525in + + + + + 0.375in + + + + + true + true + + + + + Leave from + + + + + + + textbox10 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave To + + + + + + + textbox1 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Days + + + + + + + textbox2 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Type + + + + + + + textbox3 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Date Applied + + + + + + + textbox8 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Date Approved + + + + + + + textbox15 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Status + + + + + + + textbox17 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Remarks + + + + + + + textbox19 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + + + true + true + + + + + =Fields!FromDate.Value + + + + + + + textbox13 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ToDate.Value + + + + + + + FromDate + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalDays.Value + + + + + + + ToDate + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveType.Value + + + + + + + TotalDays + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ApplyDate.Value + + + + + + + textbox14 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ApproveDate.Value + + + + + + + textbox16 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveStatus.Value + + + + + + + textbox18 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Remarks.Value + + + + + + + textbox20 + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + After + true + + + + Detail + + + + + Detail_Collection + Output + true + + + + dsEmpLeaveLedger_EmpLeaveLedger + 3.5in + 0.125in + 0.575in + 5.8646in + 2 + + + Right + + + + true + true + + + + + =Parameters!CompanyInfo.Value + + + + + + + 0.125in + 1.75in + 0.25in + 4in + 3 + + + + External + ="file:///" & Parameters!Logo.Value + image/jpg + FitProportional + 0.125in + 0.125in + 0.55in + 1.4in + 4 + + + + + + + true + true + + + + + =Parameters!Address.Value + + + + + + + true + true + + + + + Leave Report + + + + + + + textbox4 + 0.875in + 2.25in + 0.25in + 1.25in + 7 + + + 2pt + 2pt + 2pt + 2pt + + + + 4.075in + + + + + + + textbox1 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Name + + + + + + + textbox3 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Designation + + + + + + + textbox4 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Department + + + + + + + textbox14 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Floor + + + + + + + textbox5 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Section + + + + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Line + + + + + + + textbox12 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Leave Type + + + + + + + textbox20 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Entitlement (Opening Balance) + + + + + + + textbox24 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Availed Leave + + + + + + + textbox27 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Remaining Leave + + + + + + + textbox31 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!EmpNo.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Name.Value) + + + + + + + Name + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Designation.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Department.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Floor.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Section.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =IIF((Fields!EmpNo.Value=Previous(Fields!EmpNo.Value)),"",Fields!Line.Value) + + + + + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Leave.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Opening.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Availed.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Balance.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + + After + true + true + + + + + =Fields!EmpNo.Value + + + + + + Detail + + + + + Detail_Collection + Output + true + + + + + + dsEmpLeaveLedger_LeaveBalance + 0.5in + 0.15in + 0.5in + 10.15in + + + + + + true + true + + + + + ="Leave Report for the Year from : "+Parameters!FromDate.Value+" - "+Parameters!ToDate.Value + + + + + + + 1in + + + + + + + 0.1in + 2.2in + 0.25in + 5.75in + + + + External + ="file:///" & Parameters!Logo.Value + image/bmp + Fit + 0.1in + 0.1in + 0.95in + 2.05in + 1 + + + + + + + true + true + + + + + =Parameters!Address.Value + + + + + + + 1.15in + 0.1in + 0in + 10.2in + 4 + + 1.75pt + + + + + + + + + + + 0.15in + 0.15in + 0.2in + 1.425in + + + + true + true + + + + + ="Page " & Globals!PageNumber & " of " & Globals!TotalPages + + + + + + + 0.1in + 9.1in + 0.2in + 1.35in + 1 + + + + + + + + + + textbox8 + 2.05in + 0.50208in + 0.85in + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Name + + + + + + + textbox7 + 0.6in + 0.50208in + 1.45in + 1 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Employee Code + + + + + + + textbox1 + 0.50208in + 0.6in + 2 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Department + + + + + + + 2.9in + 0.50208in + 0.85in + 3 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Floor + + + + + + + 3.75in + 0.50208in + 0.85in + 4 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Section + + + + + + + 4.6in + 0.50208in + 0.65in + 5 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Line + + + + + + + 5.25in + 0.50208in + 0.45in + 6 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + ContentsOnly + + + Silver + + + 7 + 2 + + + + + + + + + + + + + + + + + + + + + + + + 0.75in + + + 0.7in + + + 0.55in + + + + + 0.25in + + + + + true + true + + + + + =Fields!Opening.Value + + + + + + + OpeningBalance + + + 2pt + 2pt + 2pt + 2pt + + + + Output + + + + + true + true + + + + + =Fields!Availed.Value + + + + + + + ClosingBalance + + + 2pt + 2pt + 2pt + 2pt + + + + Output + + + + + true + true + + + + + =Fields!Balance.Value + + + + + + + textbox9 + + + 2pt + 2pt + 2pt + 2pt + + + + Output + + + + + + + + + + + =Fields!Leave.Value + + + + 0.30208in + + + true + true + + + + + =Fields!Leave.Value + + + + + + + Leave + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.2in + + + true + true + + + + + Entitlement (Opening Balance) + + + + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + true + + + + 0.2in + + + true + true + + + + + Availed Leave + + + + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + true + + + + 0.2in + + + true + true + + + + + Remaining Leave + + + + + + + textbox6 + + + Silver + 2pt + 2pt + 2pt + 2pt + + + + + true + + + Output + true + + + + + + + + + =Fields!EmpNo.Value + + + + 0.6in + + + true + true + + + + + =Fields!EmpNo.Value + + + + + + + EmpNo + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Name.Value + + + + 1.45in + + + true + true + + + + + =Fields!Name.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Designation.Value + + + + 0.85in + + + true + true + + + + + =Fields!Designation.Value + + + + + + + Designation + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Department.Value + + + + 0.85in + + + true + true + + + + + =Fields!Department.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Floor.Value + + + + 0.85in + + + true + true + + + + + =Fields!Floor.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Section.Value + + + + 0.65in + + + true + true + + + + + =Fields!Section.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Line.Value + + + + 0.45in + + + true + true + + + + + =Fields!Line.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + Output + true + + + Output + + + Output + + + Output + + + Output + + + Output + + + Output + + + + true + true + dsEmpLeaveLedger_LeaveBalance + 0.4in + 0.05in + 0.75208in + 7.7in + + + + + + + textbox5 + 0.75in + 1.75in + 0.25in + 5.7in + + + + true + true + + + + + =Parameters!CompanyInfo.Value + + + + + + + 0.15in + 1.75in + 0.25in + 5.7in + 1 + + + + External + ="file:///" & Parameters!Logo.Value + image/bmp + Fit + 0.1in + 0.05in + 0.825in + 1.3in + 2 + + + + + + + textbox29 + 0.4in + 1.75in + 0.2in + 5.7in + 3 + + + + + + + + + + textbox18 + 0.05in + 0.05in + 0.2in + 1.75in + + + + true + true + + + + + ="Page " & Globals!PageNumber & " of " & Globals!TotalPages + + + + + + + 6.35in + 0.2in + 1.4in + 1 + + + + + + + + + + Textbox5 + 0.12847in + 0.25in + 0.7409in + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + KviLvbv/ cÖwZôv‡bi wVKvbv + + + + + + + Textbox5 + 0.40625in + 0.25in + 0.87284in + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + kªwg‡Ki bvg + + + + + + + Textbox5 + 0.68403in + 0.25in + 0.7409in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + c`ex + + + + + + + Textbox5 + 0.96181in + 0.25in + 0.7409in + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + wefvM + + + + + + + Textbox5 + 1.23958in + 0.25in + 0.7409in + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.40625in + 0.8993in + 0.25in + 0.125in + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.12847in + 0.89931in + 0.25in + 0.125in + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 1.23958in + 0.89931in + 0.25in + 0.125in + 7 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.68403in + 0.89929in + 0.25in + 0.125in + 8 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.96181in + 0.89931in + 0.25in + 0.125in + 9 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + kvLvi bvg + + + + + + + Textbox5 + 1.53125in + 0.25in + 0.7409in + 10 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 1.53125in + 0.89931in + 0.25in + 0.125in + 11 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!CompanyNameBangla.Value + + + + + + + Textbox5 + 0.12847in + 1.09376in + 0.25in + 2.40625in + 12 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!CompanyAddressBangla.Value + + + + + + + Textbox5 + 0.40625in + 1.09376in + 0.25in + 2.40625in + 13 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!EmpName.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 0.68403in + 1.09376in + 0.25in + 2.40625in + 14 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!Designation.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 0.96181in + 1.09376in + 0.25in + 2.40625in + 15 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!Department.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 1.23958in + 1.09376in + 0.25in + 2.40625in + 16 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!Section.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 1.53125in + 1.09376in + 0.25in + 2.40625in + 17 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + KvW© bs + + + + + + + Textbox5 + 0.12848in + 3.6875in + 0.25in + 0.94792in + 18 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + wb‡qv‡Mi ZvwiL + + + + + + + Textbox5 + 0.40625in + 3.6875in + 0.25in + 0.94792in + 19 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.40625in + 4.73612in + 0.25in + 0.125in + 20 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.12848in + 4.73612in + 0.25in + 0.125in + 21 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + kÖwgK †iwRóv‡ii µwgK bs + + + + + + + Textbox5 + 0.69792in + 3.6875in + 0.25in + 0.94792in + 22 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + t + + + + + + + Textbox5 + 0.69792in + 4.73612in + 0.25in + 0.125in + 23 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!CardNo.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 0.12848in + 4.93056in + 0.25in + 2.05559in + 24 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!JoiningDate.Value, "dsEmpLeaveLedger_LeaveRegisterBangla") + + + + + + + Textbox5 + 0.40625in + 4.93056in + 0.25in + 2.05559in + 25 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + + + + + + + + Textbox5 + 0.69792in + 4.93056in + 0.25in + 2.05559in + 26 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 0.38703in + + + 0.78482in + + + 0.85455in + + + 0.81289in + + + 0.48344in + + + 0.53879in + + + 0.48345in + + + 0.56544in + + + 0.48345in + + + 0.56442in + + + 0.65157in + + + 0.35586in + + + 0.47823in + + + 0.33208in + + + 0.36995in + + + 0.43417in + + + 0.48784in + + + 0.5388in + + + 0.33208in + + + 0.56544in + + + 0.43625in + + + 0.47823in + + + 0.49906in + + + + + 0.46458in + + + + + true + true + + + + + বৎসরের +প্রারম্ভে + + + + + + + Textbox33 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + কি ধরনের ছুটি চাওয়া হইয়াছে + + + + + + + Textbox35 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + 8 + + + + + + + + + + + + + true + true + + + + + প্রত্যাখান বা মূলতবি রাখা হইলে + + + + + + + Textbox69 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ছুটি মঞ্জুরের তারিখ + + + + + + + Textbox66 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + কত দিন মঞ্জুর + + + + + + + Textbox63 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + বার্ষিক ছুটি নগদায়নের সংখ্যা + + + + + + + Textbox60 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + অবশিষ্ট পাওনা ছুটির পরিমান + + + + + + + Textbox57 + + + Middle + 2pt + 2pt + 2pt + 2pt + + + 8 + + + + + + + + + + + + + true + true + + + + + শ্রমিকের + + + + স্বাক্ষর + + + + / টিপসহি + + + + + + + Textbox45 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + মালিক/ ব্যবস্থাপকের + + + + + + + Textbox37 + + + + + + Bottom + 2pt + 2pt + 2pt + + + + + + + + 0.46458in + + + + + true + true + + + + + জমাকৃত বার্ষিক ছুটি + + + + + + + Textbox39 + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + বার্ষিক + + + + + + + Textbox40 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + নৈমিত্তিক + + + + + + + Textbox43 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + অসুস্থ্যতা + + + + + + + Textbox49 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + মাতৃত্বকালীন ছুটি + + + + + + + Textbox73 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + পিতৃত্বকালীন ছুটি + + + + + + + Textbox88 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + বিশেষ ছুটি + + + + + + + Textbox82 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + কমপেনসেটরি ছুটি + + + + + + + Textbox79 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + পারিশ্রমিক বিহীন ছুটি + + + + + + + Textbox76 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + প্রত্যাখানের বা মূলতবীর কারণ + + + + + + + Textbox70 + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox67 + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + করা হইল + + + + + + + Textbox64 + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ও অর্থ প্রদানের তারিখ + + + + + + + Textbox61 + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + বার্ষিক + + + + + + + Textbox58 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + নৈমিত্তিক + + + + + + + + + + + + + + + + Textbox55 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + অসুস্থ্যতা + + + + + + + Textbox52 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + মাতৃত্বকালীন ছুটি + + + + + + + Textbox91 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + পিতৃত্বকালীন ছুটি + + + + + + + Textbox106 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + বিশেষ ছুটি + + + + + + + Textbox100 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + কমপেনসেটরি ছুটি + + + + + + + Textbox97 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + পারিশ্রমিক বিহীন ছুটি + + + + + + + Textbox94 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + + + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + স্বাক্ষর + + + + + + + Textbox41 + + + + + + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + + + + + + + + Textbox89 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox90 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox92 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox93 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox95 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox96 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox98 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox99 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox101 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox102 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox103 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox104 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox105 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox107 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ১০ + + + + + + + Textbox108 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ১১ + + + + + + + Textbox109 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox110 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox111 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox112 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox113 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox114 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ১২ + + + + + + + Textbox115 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + ১৩ + + + + + + + Textbox116 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.38542in + + + + + true + true + + + + + =Fields!OpeningEL.Value + + + + + + + OpeningEL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesEL.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesCL.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesSL.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesML.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesPL.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesSPL.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesCOM.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DesLWOP.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ReasonOfRejection.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveGrantedDate.Value + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotalGrantedDays.Value + + + + + + + TotalGrantedDays + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingEL.Value + + + + + + + RemainingEL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingCL.Value + + + + + + + RemainingCL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingSL.Value + + + + + + + RemainingSL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingML.Value + + + + + + + RemainingML + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingPL.Value + + + + + + + RemainingPL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingSPL.Value + + + + + + + RemainingSPL + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingCOM.Value + + + + + + + RemainingCOM + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!RemainingLWOP.Value + + + + + + + RemainingLWOP + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + External + ="file:///" & Fields!EmployeeSignature.Value + FitProportional + + + + + + + + + + Database + =Fields!EmployerSignature.Value + image/png + FitProportional + + + + + + + + + + + + + + + + =IIF(Parameters!ELVisible.Value,false,true) + + + + + =IIF(Parameters!CLVisible.Value,false,true) + + + + + =IIF(Parameters!SLVisible.Value,false,true) + + + + + =IIF(Parameters!MLVisible.Value,False,True) + + + + + =IIF(Parameters!PLVisible.Value,false,true) + + + + + =IIF(Parameters!SPLVisible.Value,false,true) + + + + + =IIF(Parameters!COMVisible.Value,false,true) + + + + + =IIF(Parameters!LWOPVisible.Value,false,true) + + + + + + + + + =IIF(Parameters!ELVisible.Value,false,true) + + + + + =IIF(Parameters!CLVisible.Value,false,true) + + + + + =IIF(Parameters!SLVisible.Value,false,true) + + + + + =IIF(Parameters!MLVisible.Value,False,True) + + + + + =IIF(Parameters!PLVisible.Value,false,true) + + + + + =IIF(Parameters!SPLVisible.Value,false,true) + + + + + =IIF(Parameters!COMVisible.Value,false,true) + + + + + =IIF(Parameters!LWOPVisible.Value,false,true) + + + + + + + + + + After + true + + + After + true + + + After + true + + + + + + + dsEmpLeaveLedger_LeaveRegisterBangla + 2.04736in + 1.56458in + 11.91784in + 27 + + + + + + 3.61194in + + + + + + + Textbox1 + 0.41667in + 6.98615in + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Parameters!CompanyAddressBangla.Value + + + + + + + Textbox2 + 0.40972in + 0.25in + 6.98615in + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + dig bs - 9 + + + + + + + Textbox3 + 0.67361in + 0.25in + 6.98615in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + [aviv 10, 115, 116 I 117 Ges wewa 24 I 108 (1) `ªóªe¨] + + + + + + + Textbox4 + 0.9375in + 0.25in + 6.98615in + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + QzwUi †iwRóvi I QywUi ewn + + + + + + + Textbox5 + 1.20139in + 0.25in + 6.98615in + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 11.69in + 8.27in + 0.6in + 0.5in + 0.5in + + + + + + + textbox3 + 17 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Name + + + + + + + textbox5 + 15 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Joining Date + + + + + + + Textbox31 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + ID No + + + + + + + Textbox33 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Desig + + + + + + + textbox6 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Account No + + + + + + + Textbox35 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + TIN No + + + + + + + Textbox39 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Department + + + + + + + textbox8 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Floor + + + + + + + Textbox41 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Section + + + + + + + Textbox44 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Line + + + + + + + Textbox46 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Cost Center + + + + + + + Textbox48 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Cost Center Code + + + + + + + Textbox50 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Grade + + + + + + + textbox13 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Actual Present days + + + + + + + textbox25 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Calculated Annual Leave + + + + + + + Textbox52 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Enjoyed Annual Leave + + + + + + + textbox27 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Balance Annual Leave + + + + + + + textbox15 + 13 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Present Gross Salary + + + + + + + Textbox14 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Payable Annual Leave in Taka + + + + + + + Textbox20 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + TDS/AIT + + + + + + + Textbox74 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + Net Payment Tk + + + + + + + Textbox77 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + REMARKS + + + + + + + Textbox80 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + SIGNATURE + + + + + + + Textbox83 + + + Gainsboro + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + =RowNumber(nothing) + + + + + + + Sl + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EmpName.Value + + + + + + + EmpName + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!JoiningDate.Value + + + + + + + JoiningDate + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!EmpNo.Value + + + + + + + EmpNo + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Designation.Value + + + + + + + Designation + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!AccountNo.Value + + + + + + + AccountNo + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!TINNo.Value + + + + + + + TINNo + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Department.Value + + + + + + + Department + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Floor.Value + + + + + + + Floor + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Section.Value + + + + + + + Section + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Line.Value + + + + + + + Line + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!CC.Value + + + + + + + CC + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!CCCode.Value + + + + + + + CCCode + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Grade.Value + + + + + + + Grade + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Present.Value + + + + + + + Present1 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!LeaveBalance.Value + + + + + + + LeaveBalance + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!EnjoyedLeave.Value + + + + + + + EnjoyedLeave + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ELDays.Value + + + + + + + ELDays + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Gross.Value + + + + + + + Gross + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!ELPayment.Value + + + + + + + ELPayment + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TDSAIT.Value + + + + + + + TDSAIT + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Net.Value + + + + + + + Net + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Remarks.Value + + + + + + + Remarks + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + =Fields!Signature.Value + + + + + + + Signature + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.25in + + + + + true + true + + + + + + + + + + + + Textbox7 + + + 2pt + 2pt + 2pt + 2pt + + + 17 + + + + + + + + + + + + + + + + + + + + + + true + true + + + + + Total: + + + + + + + textbox19 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox17 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox23 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox12 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Sum(Fields!Net.Value) + + + + + + + Textbox10 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + + + + + Textbox82 + + + 2pt + 2pt + 2pt + 2pt + Rotate270 + + + + + + + + true + true + + + + + + + + + + + + Textbox85 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After + true + true + + + + Detail + + + + + Detail_Collection + Output + true + + + Before + true + + + + PayrollDataSet_dtEncashmentReportNew + 0.025in + 0.1375in + 1.6in + 7.64502in + + + + Textbox24 + 2.0425in + 0.15599in + 0.25in + 1.48696in + 1 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + HR Department + + + + + + + + + + Textbox24 + 2.0425in + 3.14813in + 0.25in + 1.48696in + 2 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Approved By + + + + Textbox24 + 2.0425in + 6.13698in + 0.25in + 1.48696in + 3 + + + + + + 2pt + 2pt + 2pt + 2pt + + + + 2.40625in + + + + + + + 0.05in + 1.58958in + 0.25in + 5.17292in + + + + External + ="file:///" & Parameters!Logo.Value + image/jpg + FitProportional + 0.05in + 0.1375in + 0.825in + 1.3in + 1 + + + + + + + textbox21 + 0.5in + 1.58958in + 0.2in + 5.17292in + 2 + + + + true + true + + + + + =Parameters!Address.Value + + + + + + + textbox29 + 0.3in + 1.58958in + 0.2in + 5.17292in + 3 + + + + true + true + + + + + ="Employee Wise Encashment Report for the year : "&Parameters!LeaveYear.Value + + + + + + + 0.91667in + 0.1375in + 0.19792in + 7.15001in + 4 + + + + true + true + + + + + ="Encash Month : " & Parameters!EncashMonth.Value + + + + + + + 1.14236in + 0.1375in + 0.19792in + 7.15001in + 5 + + + + + + + + + + 4.495in + 0.2in + 3.3in + + + + true + true + + + + + ="Print Date : " & Format(Today(), "dd MMM yyyy") + + + + + + + textbox18 + 0.1375in + 0.25in + 2.5in + 1 + + + +