コード例 #1
0
        public int DeleteVehicleByOwnerId(string ownerId)
        {
            int i = 0;

            using (SqlCommand command = new SqlCommand())
            {
                i = ExecuteNonQuery(VehicleStringsSql.DeleteVehicleByOwnerId(ownerId));
            }

            return(i);
        }