public JsonResult Role()
        {
            DropDownListsRepository modelRepo = new DropDownListsRepository();

            return Json(modelRepo.ReadRoles().OrderBy(o => o.Code).Select(c => new { RoleID = c.ID, Role = c.Code }).OrderBy(o => o.Role), JsonRequestBehavior.AllowGet);
        }