public bool Insert(TransportationType transportationtype)
 {
     int autonumber = 0;
     TransportationTypeDAC transportationtypeComponent = new TransportationTypeDAC();
     bool endedSuccessfuly = transportationtypeComponent.InsertNewTransportationType( ref autonumber,  transportationtype.TypeName);
     if(endedSuccessfuly)
     {
         transportationtype.ID = autonumber;
     }
     return endedSuccessfuly;
 }
        public bool Insert( string TypeName)
        {
            TransportationTypeDAC transportationtypeComponent = new TransportationTypeDAC();
            int ID = 0;

            return transportationtypeComponent.InsertNewTransportationType( ref ID,  TypeName);
        }