-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebtKInd.cs
39 lines (35 loc) · 1.41 KB
/
DebtKInd.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
//------------------------------------------------------------------------------
// <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 DebtKInd
{
public DebtKInd()
{
this.DebtPayments = new HashSet<DebtPayment>();
}
public int Code { get; set; }
public string Descriptions { get; set; }
public Nullable<byte> count { get; set; }
public Nullable<double> DebtCash { get; set; }
public Nullable<double> WageCash { get; set; }
public Nullable<double> Cash { get; set; }
public Nullable<int> Year { get; set; }
public string Fromdate { get; set; }
public string ToDate { get; set; }
public Nullable<bool> Status { get; set; }
public Nullable<int> UserCode { get; set; }
public string IpAdress { get; set; }
public Nullable<bool> Deleted { get; set; }
public Nullable<byte> ReciveWageKind { get; set; }
public virtual ICollection<DebtPayment> DebtPayments { get; set; }
}
}