Пример #1
0
        public async Task <IActionResult> PutEmpleado([FromRoute] int id, [FromBody] Empleado empleado)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != empleado.Id)
            {
                return(BadRequest());
            }

            _context.Entry(empleado).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!EmpleadoExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
Пример #2
0
        public async Task <ActionResult <Empleado> > PostEmpleado(Empleado item)
        {
            _context.Empleados.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetEmpleado), new { id = item.Id }, item)); //pg.53 y 56
        }
Пример #3
0
        public async Task <IActionResult> Create([Bind("EmpleadoID,Codigo_Empleado,Cedula,Nombre,Apellido,Fecha_Ingreso,Ocupacion")] Empleado empleado)
        {
            if (ModelState.IsValid)
            {
                _context.Add(empleado);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(empleado));
        }
        public async Task <IActionResult> Create([Bind("EmpleadoID,Nombre,Cargo,Sueldo")] Empleado empleado)
        {
            if (ModelState.IsValid)
            {
                _context.Add(empleado);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(empleado));
        }
        public async Task <bool> CrearEmpleado(Empleado empleado)
        {
            bool response = false;

            try {
                await empleadoContext.AddAsync(empleado);

                await empleadoContext.SaveChangesAsync();

                response = true;
            }
            catch (Exception exception) {
                ShowExceptionMessage(exception);
            }
            return(response);
        }
Пример #6
0
        public async Task <IActionResult> AddOrEdit([Bind("EmpID,Cedula,Nombre,Puesto,Salario")] Empleado empleado)
        {
            if (ModelState.IsValid)
            {
                if (empleado.EmpID == 0)
                {
                    _context.Add(empleado);
                }
                else
                {
                    _context.Update(empleado);
                }
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(empleado));
        }