public void ValidationPersoneTest() { MKSBusiness<Personne> b = new MKSBusiness<Personne>(); b.SetValidation(new ValidationPersonne()); Personne p = new Personne(); p.Nom = "LOLO"; b.Select(p); }
public Personne Ajouter(Personne personne) { MKSBusiness<Personne> b = new MKSBusiness<Personne>(); b.SetValidation(new ValidationPersonne()); b.SetPreProcessAdd(new ProcessAddPersonne()); return b.Add(personne); }
public Personne Ajouter(Personne personne) { MKSBusiness <Personne> b = new MKSBusiness <Personne>(); b.SetValidation(new ValidationPersonne()); b.SetPreProcessAdd(new ProcessAddPersonne()); return(b.Add(personne)); }
public void ValidationPersoneTest() { MKSBusiness <Personne> b = new MKSBusiness <Personne>(); b.SetValidation(new ValidationPersonne()); Personne p = new Personne(); p.Nom = "LOLO"; b.Select(p); }