public async Task <IActionResult> AllEventModelByMongoId(string mongoId)
        {
            System.Linq.IQueryable <TEventModel> result = await _baseAppService.GetAllEventByObjectIdAsync(mongoId);

            return(Json(result));
        }