public ActionResult Edit(long id)
        {
            var model           = new CreateEditViewModel();
            var productCategory = paymentTypeProvider.GetPaymentType(id);

            mapper.Map(productCategory, model);

            return(PartialView("CreateEdit", model));
        }