示例#1
0
 public void SaveTransaction(TaskCard taskCard, int id)
 {
     switchOpt = new FinancialPlanner.Common.JSONSerialization().DeserializeFromString <SwitchOpt>(taskCard.TaskTransactionType.ToString());
     DataBase.DBService.ExecuteCommandString(string.Format(INSERT_SWITCH,
                                                           id,
                                                           switchOpt.Arn,
                                                           switchOpt.Cid,
                                                           switchOpt.MemberName,
                                                           switchOpt.Amc,
                                                           switchOpt.FolioNumber,
                                                           switchOpt.Scheme,
                                                           switchOpt.Options,
                                                           switchOpt.FromSchemeId,
                                                           switchOpt.FromOptions,
                                                           switchOpt.Amount,
                                                           switchOpt.TransactionDate.ToString("yyyy-MM-dd hh:mm:ss"),
                                                           switchOpt.ModeOfExecution,
                                                           switchOpt.Remark), true);
 }
示例#2
0
        private SwitchOpt convertToSwitch(DataRow dr)
        {
            SwitchOpt switchOpt = new SwitchOpt();

            switchOpt.Id              = dr.Field <int>("ID");
            switchOpt.TaskId          = dr.Field <int>("TaskId");
            switchOpt.Arn             = dr.Field <int>("ARN");
            switchOpt.Cid             = dr.Field <int>("CID");
            switchOpt.MemberName      = dr.Field <string>("MemberName");
            switchOpt.Amc             = dr.Field <int>("AMC");
            switchOpt.FolioNumber     = dr.Field <string>("FolioNumber");
            switchOpt.Scheme          = dr.Field <int>("ToSchemeId");
            switchOpt.Options         = dr.Field <string>("ToOption");
            switchOpt.FromSchemeId    = dr.Field <int>("FromSchemeId");
            switchOpt.FromOptions     = dr.Field <string>("FromOption");
            switchOpt.Amount          = dr.Field <long>("Amount");
            switchOpt.TransactionDate = dr.Field <DateTime>("TransactionDate");
            switchOpt.ModeOfExecution = dr.Field <string>("ModeOfExecution");
            switchOpt.Remark          = dr.Field <string>("Remark");
            return(switchOpt);
        }
示例#3
0
        public object GetTransaction(int id)
        {
            try
            {
                Logger.LogInfo("Get: Switch transaction process start");
                SwitchOpt switchOpt = new SwitchOpt();

                DataTable dtAppConfig = DataBase.DBService.ExecuteCommand(string.Format(SELECT_BY_ID, id));
                foreach (DataRow dr in dtAppConfig.Rows)
                {
                    switchOpt = convertToSwitch(dr);
                }
                Logger.LogInfo("Get: Fresh purchase transaction process completed.");
                return(switchOpt);
            }
            catch (Exception ex)
            {
                StackTrace st = new StackTrace();
                StackFrame sf = st.GetFrame(0);
                MethodBase currentMethodName = sf.GetMethod();
                LogDebug(currentMethodName.Name, ex);
                return(null);
            }
        }