Exemple #1
0
        public static void UpdateProducto(Producto obj)
        {
            if (obj == null)
            {
                throw new ArgumentException("El objeto a insertar no puede ser nulo");
            }

            if (obj.ProductoId <= 0)
            {
                throw new ArgumentException("El productoId no puede ser menor o igual que cero");
            }

            if (string.IsNullOrEmpty(obj.Nombre))
            {
                throw new ArgumentException("El nombre no puede ser nulo o vacio");
            }

            if (obj.Precio <= 0)
            {
                throw new ArgumentException("El precio no puede ser menor o igual que cero");
            }

            if (obj.Stock < 0)
            {
                throw new ArgumentException("El stock no puede ser negativo");
            }

            ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            adapter.Update(obj.Nombre, obj.Precio, obj.Stock, obj.ProductoId);
        }
Exemple #2
0
    public static List <Producto> GetListaProducto()
    {
        List <Producto> theList = new List <Producto>();
        Producto        theData = null;

        try
        {
            ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            ProductoDS.ProductoDataTable table = localAdapter.GetListaProductos();

            if (table != null && table.Rows.Count > 0)
            {
                foreach (var row in table)
                {
                    theData = FillReccord(row);
                    theList.Add(theData);
                }
            }
        }
        catch (Exception q)
        {
            throw new ArgumentException(q.Message, q);
        }

        return(theList);
    }
Exemple #3
0
        public static int InsertProducto(Producto obj)
        {
            if (obj == null)
            {
                throw new ArgumentException("El objeto a insertar no puede ser nulo");
            }

            if (string.IsNullOrEmpty(obj.Nombre))
            {
                throw new ArgumentException("El nombre no puede ser nulo o vacio");
            }

            if (obj.Precio <= 0)
            {
                throw new ArgumentException("El precio no puede ser menor o igual que ceo");
            }

            if (obj.Stock < 0)
            {
                throw new ArgumentException("El stock no puede ser negativo");
            }

            int?id = null;

            ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            adapter.Insert(obj.Nombre, obj.Precio, obj.Stock, ref id);

            if (id == null || id.Value <= 0)
            {
                throw new Exception("La llave primaria no se generó correctamente");
            }

            return(id.Value);
        }
Exemple #4
0
        public static void DeleteProducto(int productoId)
        {
            if (productoId <= 0)
            {
                throw new ArgumentException("El productoId no puede ser menor o igual que cero");
            }

            ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            adapter.Delete(productoId);
        }
Exemple #5
0
 public static void DeleteProducto(int ProductoId)
 {
     try
     {
         ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
         localAdapter.DeleteProducto(ProductoId);
     }
     catch (Exception q)
     {
         throw new ArgumentException(q.Message, q);
     }
 }
Exemple #6
0
 public static void UpdateProducto(Producto theData)
 {
     try
     {
         ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
         localAdapter.UpdateProducto(theData.Descripcion, theData.PrecioCompra, theData.PrecioVenta, theData.ProductoId);
     }
     catch (Exception q)
     {
         throw new ArgumentException(q.Message, q);
     }
 }
Exemple #7
0
        public static List <Producto> GetProductos()
        {
            ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            ProductoDS.ProductoDataTable table = adapter.GetProductos();

            List <Producto> list = new List <Producto>();

            foreach (var row in table)
            {
                Producto obj = GetProductoFromRow(row);
                list.Add(obj);
            }
            return(list);
        }
Exemple #8
0
        public static Producto GetProductoById(int productoId)
        {
            if (productoId <= 0)
            {
                throw new ArgumentException("El productoId no puede ser menor o igual que cero");
            }

            ProductoDSTableAdapters.ProductoTableAdapter adapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            ProductoDS.ProductoDataTable table = adapter.GetProductoById(productoId);

            if (table == null || table.Rows.Count != 1)
            {
                throw new Exception("La table obtenida no tiene el numero correcto de filas");
            }
            Producto obj = GetProductoFromRow(table[0]);

            return(obj);
        }
Exemple #9
0
    public static void InsertProducto(Producto theData)
    {
        try
        {
            int?productoId = 0;

            ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            localAdapter.InsertProducto(theData.Descripcion, theData.PrecioCompra, theData.PrecioVenta, ref productoId);

            if (productoId.Value <= 0)
            {
                throw new ArgumentException("Error al registrar Producto.");
            }
        }
        catch (Exception q)
        {
            throw new ArgumentException(q.Message, q);
        }
    }
Exemple #10
0
    public static Producto GetProductoById(int ProductoId)
    {
        Producto theData = null;

        try
        {
            ProductoDSTableAdapters.ProductoTableAdapter localAdapter = new ProductoDSTableAdapters.ProductoTableAdapter();
            ProductoDS.ProductoDataTable table = localAdapter.GetProductoById(ProductoId);

            if (table != null && table.Rows.Count > 0)
            {
                ProductoDS.ProductoRow row = table[0];
                theData = FillReccord(row);
            }
        }
        catch (Exception q)
        {
            throw new ArgumentException(q.Message, q);
        }

        return(theData);
    }