Пример #1
0
 public Precio Agregar(Precio precio)
 {
     try
     {
         var bc = new PrecioComponent();
         return(bc.Agregar(precio));
     }
     catch (Exception e)
     {
         Console.WriteLine(e.Message);
         throw e;
     }
 }
Пример #2
0
        public Precio Agregar(Precio precio)
        {
            var bc = new PrecioComponent();

            return(bc.Agregar(precio));
        }
Пример #3
0
        public Precio Create(Precio Precio)
        {
            PrecioComponent PrecioComponent = new PrecioComponent();

            return(PrecioComponent.Agregar(Precio));
        }