public bool SetMaxDays(int days)
 {
     if (days < 10)
     {
         return(false);
     }
     return(repo.SetMaxDays(days));
 }