public async Task <IHttpActionResult> GetRelationsByCompanyIdsAsync([FromUri] int id)
        {
            var companyEntity = await Task.Run(() => _companyAppService.GetAllEntitiesRelations(id));

            if (companyEntity == null)
            {
                return(this.Ok());
            }

            var companyVM = new CompanyId(companyEntity);

            return(this.Ok(companyVM));
        }