public ActionResult Index(Transfer viewModel)
        {
            if (Session["userName"] == null)
            {
                return(RedirectToAction("Index", "Login"));
            }

            if (!ModelState.IsValid)
            {
                viewModel.Currencies = HelpersUI.GetCurrencies();

                return(View(viewModel));
            }

            string userName              = Session["userName"].ToString();
            int    offesetDate           = int.Parse(System.Configuration.ConfigurationManager.AppSettings["AfterValueDaysWillExpireToken"]);
            int    CurrencyId            = int.Parse(viewModel.Currency);
            int    DestinationCurrencyId = int.Parse(viewModel.DestinationCurrency);

            if (HelpersUI.AddTransaction(userName, offesetDate, viewModel.CNP, viewModel.IBAN, viewModel.Amount, CurrencyId, viewModel.DestinationAmount, DestinationCurrencyId))
            {
                return(RedirectToAction("Index", "Home"));
            }

            return(Content("Failed"));
        }
Example #2
0
        public ActionResult NewToken(int id)
        {
            var offset = int.Parse(System.Configuration.ConfigurationManager.AppSettings["AfterValueDaysWillExpireToken"]);

            HelpersUI.RenewToken(id, offset);

            return(RedirectToAction("Index", "Home"));
        }
Example #3
0
        public ActionResult Index()
        {
            if (Session["userName"] == null)
            {
                return(RedirectToAction("Index", "Login"));
            }

            var list = HelpersUI.GetTransactionsByUserName(Session["userName"].ToString());

            return(View(list));
        }
        // GET: Transfer
        public ActionResult Index()
        {
            if (Session["userName"] == null)
            {
                return(RedirectToAction("Index", "Login"));
            }

            Transfer viewModel = new Transfer();

            viewModel.Currencies = HelpersUI.GetCurrencies();

            return(View(viewModel));
        }
Example #5
0
        public ActionResult Index(User viewModel)
        {
            if (!ModelState.IsValid)
            {
                return(View(viewModel));
            }

            if (!HelpersUI.CheckUserPassword(viewModel.UserName, viewModel.Password))
            {
                ViewBag.Message = "Credentials are wrong !";
                return(View(viewModel));
            }

            Session["userName"] = viewModel.UserName;
            return(RedirectToAction("Index", "Home"));
        }
Example #6
0
        public ActionResult Index(CheckTransaction viewModel)
        {
            if (!ModelState.IsValid)
            {
                return(View(viewModel));
            }

            string error;

            viewModel.Transactions = HelpersUI.GetTransactionsByCNPAndToken(viewModel.CNP, viewModel.Token, out error);
            if (!string.IsNullOrEmpty(error))
            {
                ViewBag.Message = error;
            }

            return(View(viewModel));
        }
        public ActionResult updateValue(decimal inputAmount, int selectCurrency, int selectDestinationCurrency, string inputIBAN)
        {
            string selectCurrencyStr            = HelpersUI.GetCurrencyById(selectCurrency).Trim();
            string selectDestinationCurrencyStr = HelpersUI.GetCurrencyById(selectDestinationCurrency).Trim();

            var beforeTaxesAmount = inputAmount.ConvertTo(selectCurrencyStr, "EUR");

            var defaultTax = Decimal.Parse(System.Configuration.ConfigurationManager.AppSettings["DefaultValuePerTransaction"]);
            var defaultValueForEveryThousand = int.Parse(System.Configuration.ConfigurationManager.AppSettings["DefaultValueForEveryThousand"]);
            var TaxForEveryThousand          = Decimal.ToInt32(beforeTaxesAmount) / 1000 * defaultValueForEveryThousand;

            beforeTaxesAmount -= defaultTax;
            beforeTaxesAmount -= Convert.ToDecimal(TaxForEveryThousand);

            if (!string.IsNullOrEmpty(inputIBAN))
            {
                if (CheckIBAN.Instance.Check(inputIBAN))
                {
                    var Abbr = inputIBAN.Substring(0, 2);
                    if (!HelpersUI.CheckCountry(Abbr))
                    {
                        var Commision = Decimal.Parse(System.Configuration.ConfigurationManager.AppSettings["CommisionIfYouAreNotInEU"]) / 100m;
                        beforeTaxesAmount -= beforeTaxesAmount * Commision;
                    }
                }
            }

            var afterTaxesAmount = beforeTaxesAmount.ConvertTo("EUR", selectDestinationCurrencyStr);

            if (afterTaxesAmount < 0)
            {
                afterTaxesAmount = 0;
            }

            afterTaxesAmount = Decimal.Round(afterTaxesAmount, 3, MidpointRounding.AwayFromZero);

            JsonResult result = new JsonResult();

            result = this.Json(JsonConvert.SerializeObject(afterTaxesAmount));
            return(result);
        }
Example #8
0
 public ActionResult ChangeStatus(int id)
 {
     HelpersUI.ChangeStatus(id);
     return(RedirectToAction("Index", "Home"));
 }