public void SendNotification() { AccountList accountList = AccountList.GetInstance(); IEnumerable <Account> list = accountList.GetAccountForAgree(); if (list.Any()) { Driver driversTo = GetDriverForSending(RolesList.Boss); string mailText = CreateMailToBoss(list); var email = new EMail(); email.SendNotification(driversTo, mailText); } }