Hi TypecastException,
there is a small mistake in the Program.cs.
Have to append:
, Id = nextId
on add a new company.
Full line can be:
var result = companyClient.AddCompany(new Company { Name = string.Format("New Company #{0}", nextId), Id = nextId });
Thank you very much for this example
Victor Helios
Hi TypecastException,
there is a small mistake in the Program.cs.
Have to append:
, Id = nextIdon add a new company.
Full line can be:
var result = companyClient.AddCompany(new Company { Name = string.Format("New Company #{0}", nextId), Id = nextId });Thank you very much for this example
Victor Helios