Exemple #1
0
        public IActionResult Admin([FromRoute] int systemUserId)
        {
            var count = _connectionService.GetAdminCounts(systemUserId);

            return(Ok(MessageHelper.Success(new AdminDashboardViewModel
            {
                Mentor = count.Mentor,
                Mentee = count.Mentee
            })));
        }