Beispiel #1
0
 public bool Create(Town entity)
 {
     if (entity != null)
     {
         _townRepository.Create(entity);
         return(true);
     }
     return(false);
 }