public string concat(string left, string right)
        {
            ComplesGama  gama  = new ComplesGama();
            ComplexAlpha alpha = new ComplexAlpha();

            return(alpha.TestText(left) + gama.TestText(right));
        }
        public int Sum(int first, int second)
        {
            ComplexBeta beta = new ComplexBeta();
            ComplesGama gama = new ComplesGama();

            int b = beta.TestValue(first);
            int g = gama.TestValue(second);

            return(realSum(b, g));
        }
Ejemplo n.º 3
0
 public Facadex()
 {
     alpha = new ComplexAlpha();
     beta  = new ComplexBeta();
     gama  = new ComplesGama();
 }