public IHttpActionResult InsertVideo(List <VideoFromService> videos)
        {
            if (videos == null)
            {
                throw new ArgumentException("VIDEOS ARE NULL");
            }
            try
            {
                _videosService.AddBulkVideos(videos);

                return(Ok(true));
            }
            catch (Exception e)
            {
                throw e;
            }
        }