Has anyone created an sample, using C# cloud components?
Something like:
public class EloquaCloudController : Controller
{ // POST
public ActionResult Create(Guid id)
{
return View();
}
// GET
public ActionResult Configuration(Guid id)
{
return View();
}
// GET
public ActionResult Render(Guid id, Object objects)
{
return View();
}
// DELETE
public ActionResult Remove(Guid id )
{
return View();
}
// GET
public ActionResult Preview(Guid id, Object objects)
{
return View();
}
}