Beispiel #1
0
        public ActionResult AddFormClourseDate(AddFormSubmitDateViewModel model)
        {
            if (ModelState.IsValid)
            {
                bool isUpdated = surveyRepository.IsDateChanged(model);

                if (isUpdated)
                {
                    ViewBag.DateModified = "Date has been successfully Updated";
                }
            }
            return(View(model));
        }
Beispiel #2
0
 public bool IsDateChanged(AddFormSubmitDateViewModel model)
 {
     throw new NotImplementedException();
 }