-
Notifications
You must be signed in to change notification settings - Fork 0
/
FD.cs
27 lines (25 loc) · 1.01 KB
/
FD.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
//------------------------------------------------------------------------------
// <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 BankingApplication
{
using System;
using System.Collections.Generic;
public partial class FD
{
public int sno { get; set; }
public Nullable<decimal> Account_No { get; set; }
public string Mode { get; set; }
public string Rupees { get; set; }
public Nullable<int> Period { get; set; }
public Nullable<decimal> Interest_rate { get; set; }
public string Maturity_Date { get; set; }
public Nullable<decimal> Maturity_Amount { get; set; }
public string Start_Date { get; set; }
}
}