Ejemplo n.º 1
0
        public async Task <JsonResult> StoreClosingAsync(int StoreId)
        {
            int result = await StoreManager.AddStoreCloseAsync(_context, StoreId);

            if (result > 0)
            {
                return(new JsonResult("ok"));
            }
            else
            {
                return(new JsonResult("error"));
            }
        }