private Account IncludeContactInfos(Account account) { try { account.ContactInfos = _contactInfoServices.GetByAccountId(account.Id); return(account); } catch (Exception e) { throw new Exception(e.Message); } }