public ActionResult Edit(int id)
        {
            var post = billingService.GetByID(id);

            ViewBag.JobList = new SelectList(jobService.GetDropDown(), "Value", "Text", post.JobId);

            return(View(post));
        }