public async Task DoStartRecruitmentAsync()
 {
     if (await _permManager.IsAllowedAsync(PermissionType.ManageRecruitment, Context.User))
     {
         if (RecruitmentService.RecruitmentStatus != "Disabled")
         {
             _recruitmentService.StartRecruitment();
             await ReplyAsync("Recruitment Process started.");
         }
         else
         {
             await ReplyAsync("Can't start Recruitment because it is Disabled");
         }
     }
     else
     {
         await ReplyAsync(AppSettings._permissionDeniedResponse);
     }
 }