Example #1
0
 public IActionResult CalcWeeks()
 {
     try
     {
         var model = _repository.GetWeeks();
         return(View(model));
     }
     catch (Exception ex)
     {
         return(View("Error", ex));
     }
 }