public bool MarkActing([FromBody] ActingAcceptModel model)
        {
            foreach (int count in model.Id)
            {
                var res = _positionRepo.MarkActing(model, count);
            }


            return(true);
        }