public IActionResult Update([FromBody] CrudViewModel <MGILibConstLab_TapeStation4200> payload)
        {
            MGILibConstLab_TapeStation4200 mGILibConstLab_TapeStation4200 = payload.value;

            _context.MGILibConstLab_TapeStation4200.Update(mGILibConstLab_TapeStation4200);
            _context.SaveChanges();
            return(Ok(mGILibConstLab_TapeStation4200));
        }
        public IActionResult Remove([FromBody] CrudViewModel <MGILibConstLab_TapeStation4200> payload)
        {
            MGILibConstLab_TapeStation4200 mGILibConstLab_TapeStation4200 = _context.MGILibConstLab_TapeStation4200
                                                                            .Where(x => x.LogId == (long)payload.key)
                                                                            .FirstOrDefault();

            _context.MGILibConstLab_TapeStation4200.Remove(mGILibConstLab_TapeStation4200);
            _context.SaveChanges();
            return(Ok(mGILibConstLab_TapeStation4200));
        }