-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebtPayment.cs
49 lines (45 loc) · 1.97 KB
/
DebtPayment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace familial_bank
{
using System;
using System.Collections.Generic;
public partial class DebtPayment
{
public DebtPayment()
{
this.DebtMonthlyPayments = new HashSet<DebtMonthlyPayment>();
}
public int Code { get; set; }
public Nullable<int> MembersCode { get; set; }
public Nullable<int> DebtKindCode { get; set; }
public string PaymentDate { get; set; }
public string paymentTime { get; set; }
public Nullable<double> StockAvg { get; set; }
public Nullable<double> DebtCash { get; set; }
public Nullable<double> DebtPay { get; set; }
public Nullable<double> DebtWage { get; set; }
public Nullable<byte> countt { get; set; }
public Nullable<double> PaymentCash { get; set; }
public string CashFirstDate { get; set; }
public string CashEndDate { get; set; }
public Nullable<double> LatenPenalty { get; set; }
public Nullable<byte> Status { get; set; }
public string PayOffDate { get; set; }
public string PayOffTime { get; set; }
public string Comment { get; set; }
public Nullable<int> UserCode { get; set; }
public string IpAdress { get; set; }
public Nullable<int> ChequeNumber { get; set; }
public Nullable<byte> DebtWageKind { get; set; }
public virtual DebtKInd DebtKInd { get; set; }
public virtual Member Member { get; set; }
public virtual ICollection<DebtMonthlyPayment> DebtMonthlyPayments { get; set; }
}
}