public Task <HttpResponseMessage> GetCountByCompany(int id)
        {
            var countVideo = _service.GetVideoCountByCompany(id);

            return(CreateResponse(HttpStatusCode.OK, countVideo));
        }