Example #1
0
    public bool Crear(TransportistaBC transportista, out int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_Crear(transportista, out id));
    }
Example #2
0
    public DataTable ObtenerTodas()
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_ObtenerTodas());
    }
Example #3
0
    public DataTable ObtenerXParametro(String rut, String nombre)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_ObtenerXParametro(rut, nombre));
    }
Example #4
0
    public bool Crear()
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_Crear(this));
    }
Example #5
0
    public bool Modificar(EmpresaBC empresa)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_Modificar(empresa));
    }
Example #6
0
    public Tipo_ZonaBC ObtenerTipoZonaXId(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.TipoZona_ObtenerXId(id));
    }
Example #7
0
    public DataTable ObtenerTodos()
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_ObtenerTodos());
    }
Example #8
0
    public DataTable ObtenerXParametro(String rut, String razon_social, String nombre_fantasia)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_ObtenerXParametro(rut, razon_social, nombre_fantasia));
    }
Example #9
0
    public bool Modificar(TransportistaBC transportista)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_Modificar(transportista));
    }
Example #10
0
    public bool Eliminar(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_Eliminar(id));
    }
Example #11
0
    public bool Eliminar(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.TipoZona_Eliminar(id));
    }
Example #12
0
    public bool Modificar(Tipo_ZonaBC zoti)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.TipoZona_Modificar(zoti));
    }
Example #13
0
    public DataTable ObtenerTiposZonaXCriterio(string descripcion)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.TipoZona_ObtenerXParametro(descripcion));
    }
Example #14
0
    public EmpresaBC ObtenerTodoXRut(string rut)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_ObtenerEmpresaXRut(rut));
    }
Example #15
0
    public DataTable ObtenerMotivoBloqueo(string user)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.ObtenerMotivoBloqueo(user));
    }
Example #16
0
    public EmpresaBC ObtenerTodoXId(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_ObtenerEmpresaXId(id));
    }
Example #17
0
    public TransportistaBC ObtenerTodoXRut(string rut)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_ObtenerXRut(rut));
    }
Example #18
0
    public bool Crear(EmpresaBC empresa)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_Crear(empresa));
    }
Example #19
0
    public TransportistaBC ObtenerXId(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Transportista_ObtenerXId(id));
    }
Example #20
0
    public bool Eliminar(int id)
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.Empresa_Eliminar(id));
    }
Example #21
0
    public DataTable ObtenerTodos()
    {
        SqlTransaccion tran = new SqlTransaccion();

        return(tran.TipoZona_ObtenerTodos());
    }