/// <summary>
        /// ViewTransfer view current transfer sent from other user
        /// </summary>
        /// <returns></returns>
        public ActionResult ViewTransfer()
        {
            if (Session["username"] == null)
            {
                return(View("~/Views/Home/Login.cshtml"));
            }
            var user = Session["username"].ToString();
            var all  = Banking.ShowCurrentTransfar(user);

            ViewData["all"] = all;
            return(View(all));
        }