212 lines
6.7 KiB
C#
212 lines
6.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.SQLite;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using compabetov2.database;
|
|
using compabetov2.database.modelos;
|
|
|
|
namespace compabetov2.database
|
|
{
|
|
internal class service
|
|
{
|
|
public static bool iniciarSesion(Usuario usuario)
|
|
{
|
|
return DAO.iniciarSesionDAO(usuario.nombreUsuario, usuario.contra);
|
|
}
|
|
public static LoginModel conseguirInicioSesion(string usuario)
|
|
{
|
|
SQLiteDataReader reader = DAO.conseguirInicioSesionDAO(usuario);
|
|
|
|
while (reader.Read())
|
|
{
|
|
return new LoginModel(
|
|
reader["usuario"].ToString(),
|
|
"",
|
|
reader["tipo"].ToString()
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
public static bool crearLogin(LoginModel loginModel, int idEmpleado)
|
|
{
|
|
return DAO.crearLoginDAO(loginModel, idEmpleado);
|
|
}
|
|
|
|
public static List<Producto> conseguirProductos()
|
|
{
|
|
List<Producto> productos = new List<Producto>();
|
|
|
|
SQLiteDataReader reader = DAO.conseguirProductosDAO();
|
|
|
|
while (reader.Read())
|
|
{
|
|
Categoria categoria = new Categoria(
|
|
int.Parse(reader["idcategoria"].ToString()),
|
|
reader["nombre"].ToString(),
|
|
reader["descripcion"].ToString());
|
|
|
|
Producto producto = new Producto(
|
|
int.Parse(reader["idproducto"].ToString()),
|
|
reader["nombre"].ToString(),
|
|
reader["descripcion"].ToString(),
|
|
decimal.Parse(reader["precio"].ToString()),
|
|
reader["img"].ToString(),
|
|
int.Parse(reader["stock"].ToString()),
|
|
categoria);
|
|
|
|
productos.Add(producto);
|
|
}
|
|
|
|
return productos;
|
|
}
|
|
|
|
public static bool insertarProducto(Producto producto)
|
|
{
|
|
return DAO.insertarProductoDAO(producto);
|
|
}
|
|
|
|
public static bool insertarCategoriaDAO(Categoria categoria)
|
|
{
|
|
return DAO.insertarCategoriaDAO(categoria);
|
|
}
|
|
|
|
public static bool insertarCliente(Cliente cliente)
|
|
{
|
|
return DAO.insertarClienteDAO(cliente);
|
|
}
|
|
|
|
public static bool eliminarCliente(Cliente cliente)
|
|
{
|
|
return DAO.eliminarClienteDAO(cliente);
|
|
}
|
|
|
|
public static List<Cliente> conseguirCliente()
|
|
{
|
|
List<Cliente> clientes = new List<Cliente>();
|
|
|
|
SQLiteDataReader reader = DAO.conseguirClientesDAO();
|
|
|
|
while (reader.Read())
|
|
{
|
|
Cliente cliente = new Cliente(
|
|
(int)reader["idCliente"],
|
|
reader["nombres"].ToString(),
|
|
reader["apellidos"].ToString(),
|
|
reader["calle"].ToString(),
|
|
reader["colonia"].ToString(),
|
|
reader["cp"].ToString(),
|
|
reader["no_ext"].ToString(),
|
|
reader["no_int"].ToString(),
|
|
reader["referencia"].ToString(),
|
|
reader["telefono"].ToString(),
|
|
reader["telefono_extra"].ToString()
|
|
);
|
|
clientes.Add(cliente);
|
|
}
|
|
return clientes;
|
|
}
|
|
|
|
public static bool insertarEmpleado(Empleado empleado)
|
|
{
|
|
return DAO.insertarEmpleadoDAO(empleado);
|
|
}
|
|
|
|
public static List<Empleado> conseguirEmpleados()
|
|
{
|
|
List<Empleado> empleados = new List<Empleado>();
|
|
|
|
using (SQLiteDataReader reader = DAO.conseguirEmpleadosDAO()) {
|
|
|
|
|
|
while (reader.Read())
|
|
{
|
|
int fkIdLogin = -1;
|
|
try {
|
|
long fkIdLoginTemp = reader.GetInt64(13);
|
|
fkIdLogin = Convert.ToInt32(fkIdLoginTemp);
|
|
}catch (Exception ex) { }
|
|
long id = reader.GetInt64(0);
|
|
Empleado empleado = new Empleado(
|
|
Convert.ToInt32(id),
|
|
reader["nombre"].ToString(),
|
|
reader["apellidos"].ToString(),
|
|
reader["calle"].ToString(),
|
|
reader["fecha_contratacion"].ToString(),
|
|
reader["estado"].ToString(),
|
|
reader["colonia"].ToString(),
|
|
reader["cp"].ToString(),
|
|
reader["no_ext"].ToString(),
|
|
reader["no_int"].ToString(),
|
|
reader["referencia"].ToString(),
|
|
reader["fecha_nac"].ToString(),
|
|
reader["telefono"].ToString(),
|
|
reader["img"].ToString(),
|
|
fkIdLogin
|
|
) ;
|
|
empleados.Add(empleado);
|
|
}
|
|
return empleados;
|
|
|
|
}
|
|
}
|
|
|
|
public static bool aumentarStock(List<Producto> stockNuevo)
|
|
{
|
|
return DAO.aumentarStockDAO(stockNuevo);
|
|
}
|
|
|
|
public static bool eliminarEmpleado(Empleado empleado)
|
|
{
|
|
return DAO.eliminarEmpleadoDAO(empleado);
|
|
}
|
|
|
|
public static bool actualizarEmpleado(Empleado empleado)
|
|
{
|
|
return DAO.actualizarEmpleadoDAO(empleado);
|
|
}
|
|
|
|
public static bool verificarExistenciaLogin(LoginModel loginModel)
|
|
{
|
|
return DAO.verificarExistenciaLoginDAO(loginModel);
|
|
}
|
|
|
|
public static bool eliminarLogin(Empleado empleado)
|
|
{
|
|
return DAO.eliminarLoginDAO(empleado);
|
|
}
|
|
|
|
public static bool modificarContra(Empleado empleado, string contra)
|
|
{
|
|
return DAO.modificarContraDAO(empleado, contra);
|
|
}
|
|
|
|
public static List<Merma> conseguirMerma()
|
|
{
|
|
List<Merma> mermas = new List<Merma>();
|
|
SQLiteDataReader reader = DAO.conseguirMermaDAO();
|
|
|
|
while (reader.Read())
|
|
{
|
|
Merma merma = new Merma(
|
|
reader.GetInt64(0),
|
|
reader.GetString(1),
|
|
reader.GetString(2),
|
|
reader.GetString(3)
|
|
);
|
|
mermas.Add(merma);
|
|
}
|
|
|
|
return mermas;
|
|
}
|
|
|
|
public static bool crearVentaDAO(VentaModel venta, List<DetalleVentaModel> detalleVentas)
|
|
{
|
|
return DAO.crearVentaDAO(venta, detalleVentas);
|
|
}
|
|
}
|
|
}
|