First commit of NewContact

This commit is contained in:
Lucio Maranta
2019-10-18 12:10:32 +02:00
parent 1ea597af13
commit dfea192cf2
10 changed files with 155 additions and 180 deletions
@@ -142,7 +142,12 @@ namespace Step.Controllers.WebApi
[Route("contact"), HttpGet]
public IHttpActionResult GetContact()
{
return Ok(ContactConfig);
return Ok(new {
ContactConfig,
SparePartConfig,
RetrofitConfig,
BackOfficeConfig
});
}
}
}