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

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

            _context.RoboticsLab_MicroLabSTAR.Remove(roboticsLab_MicroLabSTAR);
            _context.SaveChanges();
            return(Ok(roboticsLab_MicroLabSTAR));
        }