예제 #1
0
        public ActionResult Add(PaymentTypeDto paymentTypeDto)
        {
            var currentUser = Session["LogUser"] as UserDto;

            return(Json(_paymentTypeService.AddPaymentType(paymentTypeDto, currentUser)));
        }