Exemple #1
0
 public Supplier Get(int entityId)
 {
     try
     {
         if (entityId < 1)
         {
             return(null);
         }
         return(supplierDal.Get(entityId));
     }
     catch (Exception ex)
     {
         return(null);
     }
 }