public static Gebruiker FindInDatabase(String email, String wachtwoord)
            {
                /*
                 *  Zorgt voor het inloggen van de gebruiker
                 */
                try
                {
                    SqlCommand cmm = new SqlCommand("[dbo].[sp_ZoekenNaarGebruiker]", Conn)
                    {
                        CommandType = CommandType.StoredProcedure
                    };
                    cmm.Parameters.AddWithValue("@GEB_Email", email);
                    cmm.Parameters.AddWithValue("@GEB_Wachtwoord", wachtwoord);

                    DataTable inlogGegevensTable = DataTableFromCommand(cmm);

                    if (inlogGegevensTable.Rows.Count == 0) return null;

                    string taalStr = inlogGegevensTable.Rows[0].ItemArray[7].ToString();
                    Taal taal = (Taal) Enum.Parse(typeof (Taal), taalStr);

                    _inlogGebruiker = new Gebruiker(Convert.ToInt32(inlogGegevensTable.Rows[0].ItemArray[0]),
                        inlogGegevensTable.Rows[0].ItemArray[1].ToString(),
                        inlogGegevensTable.Rows[0].ItemArray[2].ToString(),
                        inlogGegevensTable.Rows[0].ItemArray[3].ToString(),
                        inlogGegevensTable.Rows[0].ItemArray[4].ToString(),
                        Convert.ToDateTime(inlogGegevensTable.Rows[0].ItemArray[5]), taal);

                    foreach (Rol rol in from DataRow row in inlogGegevensTable.Rows
                        select row.ItemArray[6].ToString()
                        into rolStr
                        select (Rol) Enum.Parse(typeof (Rol), rolStr))
                    {
                        _inlogGebruiker.RolToevoegen(rol);
                    }
                    return _inlogGebruiker;
                }
                catch (Exception)
                {
                    return null;
                }
            }