예제 #1
0
 public static decimal Value(IQBAmountType amt)
 {
     if (amt == null)
     {
         return(0);
     }
     else
     {
         return((decimal)amt.GetValue());
     }
 }
예제 #2
0
파일: Safe.cs 프로젝트: cubski/Zombie
 public static decimal Value(IQBAmountType amt)
 {
     if (amt == null)
     {
         return 0;
     }
     else
     {
         return (decimal)amt.GetValue();
     }
 }