public async Task <ViewResult> CreateDriverNew()
 {
     ViewBag.TitlePart = "Добавления нового водителя";
     autoParlLogic     = new AutoParlLogic();
     ViewBag.sel       = new SelectList(autoParlLogic.AutoNoneDriverList(), "Id", "Model");
     return(View());
 }
 public async Task <ViewResult> EditDriverNew(int id)
 {
     ViewBag.TitlePart = "Изминение данных о водителе";
     autoParlLogic     = new AutoParlLogic();
     ViewBag.sel       = new SelectList(autoParlLogic.AutoNoneDriverList(), "Id", "Model");
     return(View(autoParlLogic.ViewOneDriver(id)));
 }