Beispiel #1
0
 public BO.Line ReseachLine(int ID)
 {
     DO.DO.Line x = DL.ReseachLine(ID);
     return(DOtoBOadapter(x));
 }
Beispiel #2
0
        public BO.Line DOtoBOadapter(DO.DO.Line adjacent)
        {
            BO.Line x = new BO.Line();

            return(x);
        }
Beispiel #3
0
 public bool Createline(BO.Line ligne)
 {
     DO.DO.Line x = BOtoDOadapter(ligne);
     return(DL.CreateLine(x));
 }
Beispiel #4
0
        public DO.DO.Line BOtoDOadapter(BO.Line adjacent)//g rajoute une variable dans le line.cs
        {
            DO.DO.Line x = new DO.DO.Line();

            return(x);
        }