コード例 #1
0
        public bool Update(MDSucursal editableSucursal)
        {
            NegocioSucursal negocioSucursal = new NegocioSucursal();

            return(negocioSucursal.Update(editableSucursal));
        }
コード例 #2
0
        public bool UpdateWithValues(int id, string nombre, string direccion)
        {
            NegocioSucursal negocioSucursal = new NegocioSucursal();

            return(negocioSucursal.Update(id, nombre, direccion));
        }