public IList <TransferScript> Get()
        {
            var identity   = (FormsIdentity)HttpContext.Current.User.Identity;
            var operatorId = _cookieParser.GetUserId(identity);

            return(_scriptService.FetchScriptsByOperatorId(operatorId)
                   .Select(script => _scriptMapper.Map(script))
                   .ToList());
        }