public ActionResult ListOneoffSchedule(FormCustomerScheduleViewModel model)
        {
            //var test  = model.StartDate;

            var repo = new CustomersScheduleRepository();

            var listOneoff = repo.GetOneoffSchedule(model.StartDate);

            return(View(listOneoff));
        }
 public ActionResult OneoffSchedule(FormCustomerScheduleViewModel model)
 {
     return(View());
 }