コード例 #1
0
 private Supplier IncludeContactInfo(Supplier supplier)
 {
     try
     {
         supplier.ContactInfos = _contactInfoService.GetBySupplierId(supplier.Id);
         return(supplier);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }