using System.Collections.Generic;
public static void Main()
List<DailyLCTransactionRequest> dailyLCTransactionRequests = new List<DailyLCTransactionRequest>();
string jsonRequestData = "[]";
if (dailyLCTransactionRequests.Count > 0) {
jsonRequestData = Newtonsoft.Json.JsonConvert.SerializeObject(dailyLCTransactionRequests);
DailyLCTransactionParameter tranParam = new DailyLCTransactionParameter();
tranParam.Transactions = jsonRequestData;
string jsonRequestDataLast = Newtonsoft.Json.JsonConvert.SerializeObject(tranParam);
Console.WriteLine("doink:" + jsonRequestDataLast);
public class DailyLCTransactionRequest {
public string KayitID { get; set; }
public string BankaKodu { get; set; }
public string SubeKodu { get; set; }
public int KurumTipi { get; set; }
public int KKIDTuru { get; set; }
public string KKID { get; set; }
public string KurumAdi { get; set; }
public int KKTipi { get; set; }
public int IslemTuru { get; set; }
public string Cins { get; set; }
public decimal Tutar { get; set; }
public decimal Kur { get; set; }
public decimal TLTutar { get; set; }
public decimal USDTutar { get; set; }
public string ValorTarihi { get; set; }
public long IslemZamani { get; set; }
public long GonZamani { get; set; }
public int Kanal { get; set; }
public int Efektif { get; set; }
public int KayitTuru { get; set; }
public class DailyLCTransactionParameter {
public string Transactions { get; set; }