public override void MapDataFields(System.Data.DataRow currentRow)
        {
            base.MapDataFields(currentRow);

            claimId = (Int64)currentRow["ClaimId"];

            line = (Int32)currentRow["Line"];

            status = (Enumerations.ClaimStatus)Convert.ToInt32(currentRow["LineStatus"]);


            serviceDateFrom = (DateTime)currentRow["ServiceDateFrom"];

            serviceDateThru = (DateTime)currentRow["ServiceDateThru"];


            servicePlace = (String)currentRow["ServicePlace"];

            revenueCode = (String)currentRow["RevenueCode"];

            revenueCodeName = (String)currentRow["RevenueCodeName"];

            procedureCode = (String)currentRow["ProcedureCode"];

            procedureCodeName = (String)currentRow["ProcedureCodeName"];

            modifierCode1 = (String)currentRow["ModifierCode1"];

            modifierCode2 = (String)currentRow["ModifierCode2"];

            modifierCode3 = (String)currentRow["ModifierCode3"];

            modifierCode4 = (String)currentRow["ModifierCode4"];


            units = (Decimal)currentRow["Units"];


            IsEmergency = Convert.ToBoolean(currentRow["IsEmergency"]);

            IsEpsdt = Convert.ToBoolean(currentRow ["IsEpsdt"]);

            IsFamilyPlanning = Convert.ToBoolean(currentRow["IsFamilyPlanning"]);


            billedAmount = (Decimal)currentRow["BilledAmount"];

            paidAmount = (Decimal)currentRow["PaidAmount"];


            denialReason = (String)currentRow["DenialReason"];

            return;
        }
Beispiel #2
0
        public override void MapDataFields(System.Data.DataRow currentRow)
        {
            base.MapDataFields(currentRow);


            claimNumber = (String)currentRow["ClaimNumber"];

            memberId = (Int64)currentRow["MemberId"];

            serviceProviderId = base.IdFromSql(currentRow, "ServiceProviderId");

            payToProviderId = base.IdFromSql(currentRow, "PayToProviderId");

            payToProviderAffiliationId = base.IdFromSql(currentRow, "PayToProviderAffiliationId");

            claimType = (Enumerations.ClaimType)Convert.ToInt32(currentRow["ClaimType"]);

            claimFromDate = (DateTime)currentRow["ClaimDateFrom"];

            claimThruDate = (DateTime)currentRow["ClaimDateThru"];

            admissionDate = (currentRow["AdmissionDate"] is System.DBNull) ? null : admissionDate = Convert.ToDateTime(currentRow["AdmissionDate"]);


            status = (Enumerations.ClaimStatus)Convert.ToInt32(currentRow["ClaimStatus"]);

            billType = (String)currentRow["BillType"];

            principalDiagnosisCode = (String)currentRow["PrincipalDiagnosisCode"];

            principalDiagnosisVersion = Convert.ToInt32(currentRow["PrincipalDiagnosisVersion"]);

            principalDiagnosisDescription = (String)currentRow["PrincipalDiagnosisName"];


            billedAmount = (Decimal)currentRow["BilledAmount"];

            paidAmount = (Decimal)currentRow["PaidAmount"];

            paidDate = (currentRow["PaidDate"] is System.DBNull) ? null : paidDate = Convert.ToDateTime(currentRow["PaidDate"]);


            denialReason = (String)currentRow["DenialReason"];

            return;
        }