public async Task <ActionResult <int> > Count()
        {
            var count = await _repository.GetAllStudentsCount(UserId);

            return(Ok(count));
        }