Exemplo n.º 1
0
        public bool Delete(int ID)
        {
            ReposicionBLL ReposicionBLL = new ReposicionBLL();

            return(ReposicionBLL.Delete(ID));
        }
Exemplo n.º 2
0
        public Reposicion GetByID(int ID)
        {
            ReposicionBLL ReposicionBLL = new ReposicionBLL();

            return(ReposicionBLL.GetByID(ID));
        }
Exemplo n.º 3
0
        public Reposicion Create(Reposicion Reposicion)
        {
            ReposicionBLL ReposicionBLL = new ReposicionBLL();

            return(ReposicionBLL.Create(Reposicion));
        }
Exemplo n.º 4
0
        public bool Edit(Reposicion Reposicion)
        {
            ReposicionBLL ReposicionBLL = new ReposicionBLL();

            return(ReposicionBLL.Edit(Reposicion));
        }
Exemplo n.º 5
0
        public List <Reposicion> ListarTodos()
        {
            ReposicionBLL ReposicionBLL = new ReposicionBLL();

            return(ReposicionBLL.ListarTodos());
        }