public void L1CallL2()
        {
            log.DebugFormat("L1 calling L2");
            var l2 = new L2(_context);

            l2.L2Call();
        }
Exemple #2
0
 public void L1CallL2() {
     log.DebugFormat("L1 calling L2");
     var l2 = new L2(_context);
     l2.L2Call();
 }