public async Task <IHttpActionResult> GetItemsByCompanyAsync([FromUri] int companyId)
        {
            var item = await Task.Run(() => _appService.GetByCompanyId(companyId));

            var readItems = TypeAdapter.Adapt <IEnumerable <ItemEntity>,
                                               IEnumerable <ItemRead> >(item);

            return(this.Ok(readItems));
        }