Beispiel #1
0
 public Dto.AziendaDto CreateAzienda(Dto.AziendaDto azienda)
 {
     try
     {
         var wcf = new EntitiesModelService();
         var dtoKey = wcf.CreateAzienda(azienda);
         var newAzienda = wcf.ReadAzienda(dtoKey);
         return newAzienda;
     }
     catch (Exception ex)
     {
         UtilityError.Write(ex);
     }
     return null;
 }
Beispiel #2
0
 public Dto.AziendaDto ReadAzienda(object id)
 {
     try
     {
         var wcf = new EntitiesModelService();
         var dtoKey = UtilityPOCO.GetDtoKey((int)id);
         var azienda = wcf.ReadAzienda(dtoKey);
         return azienda;
     }
     catch (Exception ex)
     {
         UtilityError.Write(ex);
     }
     return null;
 }