public TownModel GetSingleTownByTownId(int townId)
 {
     try
     {
         return(townRepository.GetSingleTownByTownId(townId));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }