Пример #1
0
        public static GET_ACCOUNT_INFO_RESP createAccount(ACCOUNT_INFO accountInfo)
        {
            //Initialize return code to success value
            GET_ACCOUNT_INFO_RESP resp = new GET_ACCOUNT_INFO_RESP();

            resp.Return_Code = "0";

            try
            {
                ACCOUNT_INFO acctInfo = new ACCOUNT_INFO();
                acctInfo.Account_No     = generateAccountNumber();
                acctInfo.Short_Title    = accountInfo.Short_Title;
                acctInfo.Opening_Date   = DateTime.Now.ToString("yyyyMMdd");
                acctInfo.Company_Code   = accountInfo.Company_Code;
                acctInfo.Company_Name   = accountInfo.Company_Name;
                acctInfo.Account_Status = "ACTIVE";

                acctInfo.Main_Holder            = new MAIN_HOLDER();
                acctInfo.Main_Holder.Customer   = accountInfo.Main_Holder.Customer;
                acctInfo.Main_Holder.Short_Name = accountInfo.Main_Holder.Short_Name;

                acctInfo.Category_Item               = new CATEGORY_ITEM();
                acctInfo.Category_Item.Category      = accountInfo.Category_Item.Category;
                acctInfo.Category_Item.Category_Desc = accountInfo.Category_Item.Category_Desc;

                acctInfo.Currency_Item               = new CURRENCY_ITEM();
                acctInfo.Currency_Item.Currency      = accountInfo.Currency_Item.Currency;
                acctInfo.Currency_Item.Currency_Desc = accountInfo.Currency_Item.Currency_Desc;

                acctInfo.Balance = new BALANCE();
                acctInfo.Balance.Available_Balance = accountInfo.Balance.Available_Balance;
                acctInfo.Balance.Previous_Balance  = 0;

                acctInfo.Mailing_Address               = new MAILING_ADDRESS_ITEM();
                acctInfo.Mailing_Address.Short_Name    = accountInfo.Mailing_Address.Short_Name;
                acctInfo.Mailing_Address.Name_1        = accountInfo.Mailing_Address.Name_1;
                acctInfo.Mailing_Address.Name_2        = accountInfo.Mailing_Address.Name_2;
                acctInfo.Mailing_Address.Street_Addr   = accountInfo.Mailing_Address.Street_Addr;
                acctInfo.Mailing_Address.Address_Line2 = accountInfo.Mailing_Address.Address_Line2;
                acctInfo.Mailing_Address.Address_Line3 = accountInfo.Mailing_Address.Address_Line3;
                acctInfo.Mailing_Address.Town_Country  = accountInfo.Mailing_Address.Town_Country;
                acctInfo.Mailing_Address.Post_Code     = accountInfo.Mailing_Address.Post_Code;
                acctInfo.Mailing_Address.Country       = accountInfo.Mailing_Address.Country;
                acctInfo.Mailing_Address.Country_Code  = accountInfo.Mailing_Address.Country_Code;

                //Add record to table
                htAccount.Add(acctInfo.Account_No, acctInfo);
                //Set Account number
                resp.Account_Info = acctInfo;
            }
            catch (Exception ex)
            {
                //Set return code value to -ve value to indicate error
                resp.Return_Code = "-1";
                resp.Error_Msg   = ex.Message.ToString();
            }
            return(resp);
        }
Пример #2
0
        public static GET_ACCOUNT_INFO_RESP deactivateAccount(string strAccountNumber)
        {
            GET_ACCOUNT_INFO_RESP resp = new GET_ACCOUNT_INFO_RESP();

            //Set response to error
            resp.Return_Code = "-1";

            try
            {
                if (htAccount.Contains(strAccountNumber))
                {
                    ACCOUNT_INFO account = (ACCOUNT_INFO)htAccount[strAccountNumber];

                    //Check if account is active
                    if (account.Account_Status == STATUS.Inactive)
                    {
                        resp.Return_Code = "1";
                        throw new Exception("Account is already inactive");
                    }
                    else
                    {
                        //Update account status
                        account.Account_Status = STATUS.Inactive;

                        //Update account table
                        htAccount[strAccountNumber] = account;

                        //Update response
                        resp.Return_Code  = "0";
                        resp.Account_Info = account;
                    }
                }
                else
                {
                    resp.Return_Code = "1";
                    throw new Exception("Invalid account number");
                }
            }
            catch (Exception ex)
            {
                resp.Error_Msg = ex.Message.ToString();
            }
            return(resp);
        }
Пример #3
0
        public static GET_ACCOUNT_INFO_RESP performTransaction(string tranType, string strAccountNumber, float amount)
        {
            GET_ACCOUNT_INFO_RESP resp = new GET_ACCOUNT_INFO_RESP();

            //Set response to error
            resp.Return_Code = "-1";

            try
            {
                if (htAccount.Contains(strAccountNumber))
                {
                    ACCOUNT_INFO account = (ACCOUNT_INFO)htAccount[strAccountNumber];

                    //Check if account is active
                    if (account.Account_Status == STATUS.Inactive)
                    {
                        resp.Return_Code = "1";
                        throw new Exception("Account is inactive");
                    }
                    else
                    {
                        switch (tranType.ToUpper())
                        {
                        case "DEBIT":
                            //Check if requested value can be debited
                            if (account.Balance.Available_Balance > amount)
                            {
                                //Set previous balance to current balance
                                account.Balance.Previous_Balance = account.Balance.Available_Balance;

                                //credit available balance
                                account.Balance.Available_Balance -= amount;

                                //Update account table
                                htAccount[strAccountNumber] = account;

                                //Update response
                                resp.Return_Code  = "0";
                                resp.Account_Info = account;
                            }
                            else
                            {
                                resp.Return_Code = "1";
                                throw new Exception("Debit amount is greater than available balance");
                            }
                            break;

                        case "CREDIT":
                            account.Balance.Previous_Balance = account.Balance.Available_Balance;

                            //credit available balance
                            account.Balance.Available_Balance += amount;

                            //Update account table
                            htAccount[strAccountNumber] = account;

                            //Update response
                            resp.Return_Code  = "0";
                            resp.Account_Info = account;
                            break;
                        }
                    }
                }
                else
                {
                    resp.Return_Code = "1";
                    throw new Exception("Invalid account number");
                }
            }
            catch (Exception ex)
            {
                resp.Error_Msg = ex.Message.ToString();
            }
            return(resp);
        }