コード例 #1
0
        public static bool Delete(Int32 taxGatewayId)
        {
            TaxGateway taxGateway = new TaxGateway();

            if (taxGateway.Load(taxGatewayId))
            {
                return(taxGateway.Delete());
            }
            return(false);
        }
コード例 #2
0
 public static bool Delete(TaxGateway taxGateway)
 {
     return(taxGateway.Delete());
 }