Exemplo n.º 1
0
 public int AgregarPromocion(string Conexion, Promocion Datos, string IDUsuario)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.AgregarPromocion(Conexion, Datos, IDUsuario));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public List <Sucursal> ObtenerSucursalesPromocion(string Conexion)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ObtenerSucursalesPromocion(Conexion));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 3
0
 public bool CambiarEstatusPromocion(string Conexion, int IDPromocion, string IDUsuario)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.CambiarEstatusPromocion(Conexion, IDPromocion, IDUsuario));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 4
0
 public Promocion ObtenerDetallePromocion(string Conexion, int IDPromocion)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ObtenerDetallePromocion(Conexion, IDPromocion));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 5
0
 public int ActualizarPreciosXIDPromocionXIDSucursal(string Conexion, PromocionXSucursal Datos, string IDUsuario)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ActualizarPreciosXIDPromocionXIDSucursal(Conexion, Datos, IDUsuario));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 6
0
 public List <Promocion> ObtenerPromociones(string Conexion, string Busqueda)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ObtenerPromociones(Conexion, Busqueda));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 7
0
 public List <PromocionServicios> ObtenerPreciosServicioXIDSucIDPromocion(string Conexion, int IDPromocion, string IDSucursal)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ObtenerPreciosServicioXIDSucIDPromocion(Conexion, IDPromocion, IDSucursal));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 8
0
 public List <PromocionXSucursal> ObtenerPreciosXSucursalPromocion(string Conexion, int IDPromocion)
 {
     try
     {
         Promocion_Datos PromDat = new Promocion_Datos();
         return(PromDat.ObtenerPreciosXSucursalPromocion(Conexion, IDPromocion));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }