Ejemplo n.º 1
0
        public IActionResult Post([FromBody] View view)
        {
            EntryStoreContext context = HttpContext.RequestServices.GetService(typeof(EntryStoreContext)) as EntryStoreContext;

            context.SetView(view);

            return(Ok());
        }