public async Task <IActionResult> AllEventModel()
        {
            System.Linq.IQueryable <TEventModel> result = await _baseAppService.GetAllEventAsync();

            return(Json(result));
        }