예제 #1
0
        public Depot ajouter(Depot u)
        {
            if (u == null)
            {
                u = new Depot();
            }
            try
            {
                db.creerDepot(u.adresse, u.email, u.localisation, u.nom, u.pays, u.telephone, u.ville, u.codeU);
            }
            catch (Exception ex)
            {
                u.adresse = ex.StackTrace;
            }

            return(u);
        }