From e05e746a1e0433d93c8a1876c3e43ba5319ae2d8 Mon Sep 17 00:00:00 2001 From: gopi17701 <41270090+gopi17701@users.noreply.github.com> Date: Tue, 24 Jul 2018 22:24:00 -0400 Subject: [PATCH] Delete InvoicePayment.java --- .../com/astute/requests/InvoicePayment.java | 69 ------------------- 1 file changed, 69 deletions(-) delete mode 100644 AstuteSystem/src/main/java/com/astute/requests/InvoicePayment.java diff --git a/AstuteSystem/src/main/java/com/astute/requests/InvoicePayment.java b/AstuteSystem/src/main/java/com/astute/requests/InvoicePayment.java deleted file mode 100644 index 946c162..0000000 --- a/AstuteSystem/src/main/java/com/astute/requests/InvoicePayment.java +++ /dev/null @@ -1,69 +0,0 @@ -package com.astute.model; - -import java.sql.Date; - -public class InvoicePayment { - String invoiceNum; - int invoicePaymentId; - int paymentTypeId; - String paymentType; - Date paymentDate; - Double invoiceAmount; - - public InvoicePayment(String invoiceNum, int invoicePaymentId, int paymentTypeId, String paymentType, Date paymentDate, Double invoiceAmount) { - this.invoiceNum = invoiceNum; - this.invoicePaymentId = invoicePaymentId; - this.paymentTypeId = paymentTypeId; - this.paymentType = paymentType; - this.paymentDate = paymentDate; - this.invoiceAmount = invoiceAmount; - } - - public String getInvoiceNum() { - return invoiceNum; - } - - public void setInvoiceNum(String invoiceNum) { - this.invoiceNum = invoiceNum; - } - - public int getInvoicePaymentId() { - return invoicePaymentId; - } - - public void setInvoicePaymentId(int invoicePaymentId) { - this.invoicePaymentId = invoicePaymentId; - } - - public int getPaymentTypeId() { - return paymentTypeId; - } - - public void setPaymentTypeId(int paymentTypeId) { - this.paymentTypeId = paymentTypeId; - } - - public String getPaymentType() { - return paymentType; - } - - public void setPaymentType(String paymentType) { - this.paymentType = paymentType; - } - - public Date getPaymentDate() { - return paymentDate; - } - - public void setPaymentDate(Date paymentDate) { - this.paymentDate = paymentDate; - } - - public Double getInvoiceAmount() { - return invoiceAmount; - } - - public void setInvoiceAmount(Double invoiceAmount) { - this.invoiceAmount = invoiceAmount; - } -}