public int AddEmployee(Employee employee)
        {
            int rowAffected = adminGateway.AddEmployee(employee);

            return(rowAffected);
        }