-
Notifications
You must be signed in to change notification settings - Fork 0
/
TransactionModel.cs
40 lines (36 loc) · 1.5 KB
/
TransactionModel.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Denial_Coding.BAL.ViewModels
{
public class TransactionModel
{
public int IMPORT_ID { get; set; }
public string CLIENT_ID { get; set; }
public DateTime? DOS { get; set; }
public string ACCOUNT_NO { get; set; }
public string ACCOUNT_NAME { get; set; }
public DateTime? DENIAL_WORKED_DT { get; set; }
public string ERROR_CATEGORY { get; set; }
public string SUB_CATEGORY_Error_Type { get; set; }
public string CODER_LOGIN_ID { get; set; }
public string QC_LOGIN_ID { get; set; }
public string DENIAL_TYPE { get; set; }
public string COMMENTS { get; set; }
public string AUDITOR_NAME { get; set; }
public string EMP_ID { get; set; }
public string EMP_NAME { get; set; }
public List<SelectListItem> ClientList { get; set; }
public string SelectedClient { get; set; }
public string Account_Name_db { get; set; }
public List<SelectListItem> AccountNoList { get; set; }
public string SelectedAccountNo { get; set; }
public List<SelectListItem> ERRORCATEGORYList { get; set; }
public string SelectedERRORCATEGORY { get; set; }
public List<SelectListItem> SUBCATEGORYList { get; set; }
public string SelectedSUBCATEGORY { get; set; }
}
}